Files
MattrixwvReactComponents/lib/component/progress/TertiaryProgress.tsx
2026-02-14 17:19:22 -05:00

16 lines
321 B
TypeScript

import type { ThemedProgressProps } from "$/types/ProgressTypes";
import Progress from "./Progress";
export default function TertiaryProgress({
...props
}: Readonly<ThemedProgressProps>){
return (
<Progress
backgroundColor="var(--color-neutral)"
progressColor="var(--color-tertiary)"
{...props}
/>
);
}