UNPKG

337 BTypeScriptView Raw
1import { CSSProperties, FunctionComponent } from 'react';
2import { Size } from '../_util/enum';
3export interface GroupProps {
4 className?: string;
5 size?: Size;
6 children?: any;
7 style?: CSSProperties;
8 prefixCls?: string;
9 compact?: boolean;
10}
11declare const Group: FunctionComponent<GroupProps>;
12export default Group;