import { clsx } from 'clsx'; import Body from '../body'; import { Typography } from '../common'; import Progress from '../progress'; import Title from '../title/Title'; export type ProgressBarProps = { className?: string; description?: React.ReactNode; id: string; title: React.ReactNode; progress: { value: number; max: number }; textEnd: React.ReactNode; }; const ProgressBar = ({ className, description, id, title, progress, textEnd, }: ProgressBarProps) => { return (