7 lines
243 B
TypeScript
7 lines
243 B
TypeScript
import type { LabelHTMLAttributes } from 'react';
|
|
import { cn } from '@/lib/cn';
|
|
|
|
export function Label({ className, ...rest }: LabelHTMLAttributes<HTMLLabelElement>) {
|
|
return <label className={cn('field__label', className)} {...rest} />;
|
|
}
|