import styles from './Label.module.scss'; type LabelKind = 'regular' | 'settings'; const Label = ({ body, htmlFor, required = false, kind = 'regular', }: { body: string; htmlFor: string; required?: boolean; kind?: LabelKind; }) => { return ( ); }; export default Label;