@amaui/ui-react
Version:
UI for React
15 lines (14 loc) • 453 B
TypeScript
import React from 'react';
import { ILine } from '../Line/Line';
import { IValueBreakpoints, IPropsAny } from '../types';
export type IGridValues = Partial<Record<IValueBreakpoints, number>>;
export interface IGrid extends ILine {
auto?: boolean;
columns?: number | IGridValues;
offsets?: IGridValues;
responsive?: boolean;
values?: IGridValues;
RootProps?: IPropsAny;
}
declare const Grid: React.FC<IGrid>;
export default Grid;