import styles from './FormLabel.css'; import InternalLabel from '../Label/InternalLabel'; import Text from '../Text'; type SizeType = 'sm' | 'md' | 'lg'; type Props = { id: string; label: string; labelDisplay?: 'visible' | 'hidden'; size?: SizeType; }; const applyDensityStyle = (size?: SizeType) => size === 'lg' ? styles.formLabelLarge : styles.formLabel; export default function FormLabel({ id, label, labelDisplay, size }: Props) { const cs = applyDensityStyle(size); return (
{label}
); }