Files
MattrixwvReactComponents/lib/component/progress/LightProgress.tsx

22 lines
452 B
TypeScript

import type { ThemedProgressProps } from "$/types/ProgressTypes";
import { forwardRef } from "react";
import Progress from "./Progress";
const LightProgress = forwardRef<HTMLDivElement, ThemedProgressProps>(({
...props
}, ref ) => {
return (
<Progress
backgroundColor="var(--color-dark)"
progressColor="var(--color-light)"
{...props}
ref={ref}
/>
);
});
LightProgress.displayName = "LightProgress";
export default LightProgress;