import { ProgressBar } from "react-aria-components" import { cx } from "class-variance-authority" import styles from "./progress.module.css" import { ProgressProps } from "./types" export function Progress({ value, minValue = 0, maxValue = 100, "aria-label": ariaLabel, className, }: ProgressProps) { return ( {({ percentage }) => ( <>
)} ) }