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