UNPKG

579 BTypeScriptView Raw
1import * as React from 'react';
2export interface FormProps extends React.HTMLProps<HTMLFormElement> {
3 /** Anything that can be rendered as Form content. */
4 children?: React.ReactNode;
5 /** Additional classes added to the Form. */
6 className?: string;
7 /** Sets the Form to horizontal. */
8 isHorizontal?: boolean;
9 /** Limits the max-width of the form. */
10 isWidthLimited?: boolean;
11 /** Sets a custom max-width for the form. */
12 maxWidth?: string;
13}
14export declare const Form: React.FunctionComponent<FormProps>;
15//# sourceMappingURL=Form.d.ts.map
\No newline at end of file