UNPKG

react-raster

Version:

Advanced grid- and styling-system which is highly customizable and ready for server-side-rendering.

16 lines (15 loc) 328 B
interface Props { children: { width: number[]; id: string; }[]; cols: number; index: number; alignX: string; } declare type Row = { ids: string[]; width: number; }; export default function getBreakpointRows({ index, cols, children, alignX, }: Props): Row[]; export {};