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