import { ThemeColor } from "@utils/types"; import classNames from "classnames"; interface ProgressBarProps { className?: string; backgroundColor?: ThemeColor; barColor?: ThemeColor; striped?: boolean; animated?: boolean; min?: number; max?: number; value: number; text?: string; } const ProgressBar = ({ value, animated = false, backgroundColor = "secondary", barColor = "primary", className, max = 100, min = 0, striped = false, text, }: ProgressBarProps) => (
{text}
); export default ProgressBar;