import cx from 'classnames'; import { useContext } from 'react'; import { FormContext } from './context'; export interface ILabelProps { required?: boolean; } export const Label: React.FunctionComponent = ({ children, required, }) => { const { labelStyle } = useContext(FormContext); return ( ); };