UNPKG

@amaui/ui-react

Version:
15 lines (14 loc) 453 B
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;