import * as RadixLabel from '@radix-ui/react-label'; import { twMerge } from 'tailwind-merge'; type LabelProps = Omit & { label: string; }; export function Label(props: LabelProps) { const { label, className } = props; return ( {label} ); }