epn-ui
Version:
Дизайн система кабинета ВМ
14 lines (13 loc) • 416 B
TypeScript
import type { CSSProperties } from 'react';
import type { RowProps } from 'antd/es/grid/row';
import type { IColProps } from './Col';
export interface IGridProps {
className?: string;
style?: CSSProperties;
gutter?: RowProps['gutter'];
wrap?: RowProps['wrap'];
align?: RowProps['align'];
justify?: RowProps['justify'];
children: RowProps['children'];
}
export { IColProps };