import "./index.scss"; import clsx from "clsx"; import { forwardRef } from "react"; export type ProgressBarProps = React.HTMLProps; export const ProgressBar = forwardRef(function ProgressBar( { className, ...props }: ProgressBarProps, ref, ) { return ; });