@fluentui/react-northstar
Version:
A themable React component library.
14 lines (13 loc) • 531 B
TypeScript
import { BoxProps } from '../Box/Box';
interface FormMessageOwnProps {
error?: boolean;
}
export interface FormMessageProps extends BoxProps, FormMessageOwnProps {
}
export declare type FormMessageStylesProps = Required<Pick<FormMessageOwnProps, 'error'>>;
export declare const formMessageClassName = "ui-form__message";
/**
* An FormMessage provides a slot for message in the FormField.
*/
export declare const FormMessage: import("@fluentui/react-bindings").ComponentWithAs<"span", FormMessageProps & BoxProps>;
export {};