import { type LabelHTMLAttributes } from 'react';

import { cn } from '@admin/lib/utils';

import { labelClassName } from './field-styles';

export function Label({ className, ...props }: LabelHTMLAttributes<HTMLLabelElement>) {
    return <label className={cn(labelClassName, className)} {...props} />;
}
