export type ProgressProps = {
    value: number
    size?: 'medium' | 'large'
    label?: boolean
    color?: string
    background?: string
    square?: boolean
    striped?: boolean
    stripeLight?: string
    stripeDark?: string
    className?: string
}
