material-ui-cordova
Version:
React components that implement Google's Material Design.
19 lines (14 loc) • 359 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface FormGroupProps extends StandardProps<
React.HtmlHTMLAttributes<HTMLDivElement>,
FormGroupClassKey
> {
row?: boolean;
}
export type FormGroupClassKey =
| 'root'
| 'row'
;
declare const FormGroup: React.ComponentType<FormGroupProps>;
export default FormGroup;