import clsx from 'clsx';

export type LabelProps = React.LabelHTMLAttributes<HTMLLabelElement>;

export const Label = ({ className, ...props }: LabelProps) => {
    return (
        <label
            className={clsx(
                'font-medium text-12 text-gray-700 uppercase tracking-wider',
                className
            )}
            {...props}
        />
    );
};
