@fluentui/react-northstar
Version:
A themable React component library.
15 lines (14 loc) • 549 B
TypeScript
import { BoxProps } from '../Box/Box';
interface FormLabelOwnProps {
inline?: boolean;
required?: boolean;
}
export interface FormLabelProps extends BoxProps, FormLabelOwnProps {
}
export declare type FormLabelStylesProps = Required<Pick<FormLabelOwnProps, 'inline' | 'required'>>;
export declare const formLabelClassName = "ui-form__label";
/**
* An FormLabel provides a slot for label in the FormField.
*/
export declare const FormLabel: import("@fluentui/react-bindings").ComponentWithAs<"label", FormLabelProps & BoxProps>;
export {};