import { FC } from 'react'; import styles from './progress-bar.module.scss'; export type ProgressBarProps = { /** * Current value. */ current: number; /** * The progress bar id. */ id: string; /** * The progress bar label. */ label: string; /** * Minimal value. */ min: number; /** * Maximal value. */ max: number; }; /** * ProgressBar component * * Render a progress bar. */ export const ProgressBar: FC = ({ current, id, label, min, max, }) => { return (
{current}/{max}
); };