import clsx from "clsx"; import type { ComponentProps } from "react"; import { ProgressBar } from "react-aria-components"; import styles from "./index.module.scss"; type OwnProps = { label: string; }; type Props = Omit, keyof OwnProps> & OwnProps; export const Spinner = ({ label, className, ...props }: Props) => ( {({ percentage }) => ( <> )} ); const c = 24 * Math.PI;