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