import classNames from 'classnames'; import type { HTMLAttributes } from 'react'; export function Label({ htmlFor, className, children, visuallyHidden, tags = [], required, ...props }: HTMLAttributes & { htmlFor: string; required?: boolean; tags?: string[]; visuallyHidden?: boolean; }) { return ( ); }