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