import { ReactNode } from 'react'; import classnames from 'classnames'; import styles from './InternalLabel.css'; import boxStyles from '../Box.css'; type Props = { children?: ReactNode; htmlFor: string; // This is used by ComboBox but not intended for direct external use. _labelDisplay?: 'visible' | 'hidden'; }; export default function InternalLabel({ children, htmlFor, _labelDisplay }: Props) { return ( ); }