@fchh/fcos-suite-ui
Version:
Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).
8 lines (7 loc) • 327 B
TypeScript
import { PropsWithChildren } from 'react';
export interface GridProps {
columns: 2 | 3 | 4 | 5 | 6;
customResponsiveColumn?: string;
customGap?: string;
}
export declare function Grid({ columns, customGap, customResponsiveColumn, children, }: PropsWithChildren<GridProps>): import("react/jsx-runtime").JSX.Element;