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

22 lines
450 B
TypeScript

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