import React, { HTMLAttributes } from 'react' import { cva, type VariantProps } from 'class-variance-authority' import { twMerge } from 'tailwind-merge' import './styles.scss' const progressVariants = cva('progress', { variants: { size: { small: 'progress--small', medium: 'progress--medium', large: 'progress--large', }, }, defaultVariants: { size: 'medium', }, }) export interface ProgressProps extends HTMLAttributes, VariantProps { value: number } const Progress = ({ className, size, value, ...props }: ProgressProps) => { return (
) } export { Progress }