import { compose } from '@fluentui/react-bindings'; import { commonPropTypes } from '../../utils'; import { Box, BoxProps } from '../Box/Box'; interface FormLabelOwnProps { inline?: boolean; required?: boolean; } export interface FormLabelProps extends BoxProps, FormLabelOwnProps {} export type FormLabelStylesProps = Required>; export const formLabelClassName = 'ui-form__label'; /** * An FormLabel provides a slot for label in the FormField. */ export const FormLabel = compose<'label', FormLabelProps, FormLabelStylesProps, BoxProps, {}>(Box, { className: formLabelClassName, displayName: 'FormLabel', overrideStyles: true, mapPropsToStylesProps: ({ inline, required }) => ({ inline, required, }), handledProps: ['required', 'inline'], }); FormLabel.defaultProps = { as: 'label', }; FormLabel.propTypes = commonPropTypes.createCommon();