import React from 'react'; import classnames from 'classnames'; import styles from './styles.module.scss'; type FormLabelProps = { label: React.ReactNode, required?: boolean, input: React.ReactNode, htmlFor?: string, editable?: boolean, }; const FormLabel: React.FunctionComponent = ({ label, required, input, htmlFor, editable, }) => (
{input}
); export default FormLabel;