import { FC } from "react"; interface Props { value: number; width?: string; } const Progress: FC = ({ value, width = "100%" }) => { return (
); }; export default Progress;