@onesy/ui-react
Version:
UI for React
18 lines (17 loc) • 533 B
TypeScript
import React from 'react';
import { ILine } from '../Line/Line';
import { IValueBreakpoints, IPropsAny } from '../types';
export declare type IGridValues = Partial<Record<IValueBreakpoints, number>>;
export declare type IGrid = ILine & {
auto?: boolean;
columns?: number | IGridValues;
parentGap?: any;
parentRowGap?: any;
parentColumnGap?: any;
offsets?: IGridValues;
responsive?: boolean;
values?: IGridValues;
RootProps?: IPropsAny;
};
declare const Grid: React.FC<IGrid>;
export default Grid;