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