@fluster.io/dev
Version:
17 lines (16 loc) • 403 B
TypeScript
import { ReactNode } from 'react';
import { ColumnGroup } from './responsive_grid';
interface ColumnMinMax {
min: string | number;
autoFill?: boolean;
}
interface GridProps {
children?: ReactNode | null;
gap?: string | number;
cols?: number | ColumnGroup | ColumnMinMax | null;
}
export declare const Grid: {
(props: GridProps): ReactNode;
displayName: string;
};
export {};