14 lines
346 B
TypeScript
14 lines
346 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;
|