import type { ThemedProgressProps } from "$/types/ProgressTypes"; import { forwardRef } from "react"; import Progress from "./Progress"; const SecondaryProgress = forwardRef(({ ...props }, ref ) => { return ( ); }); SecondaryProgress.displayName = "SecondaryProgress"; export default SecondaryProgress;