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