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

22 lines
450 B
TypeScript

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