UNPKG

@coinmeca/ui

Version:

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

42 lines 1.15 kB
import type { GridContent as Content } from "./GridContent"; export interface GridContainer { format?: any; contents?: Content[]; children?: any; area?: string; direction?: "row" | "col"; gap?: number | { row?: number; col?: number; }; width?: number | string | { min?: number | string; max?: number | string; }; height?: number | string | { min?: number | string; max?: number | string; }; responsive?: { device: "desktop" | "laptop" | "tablet" | "mobile"; area?: string; direction?: "row" | "col"; gap?: number | { row?: number; col?: number; }; width?: number | string | { min?: number | string; max?: number | string; }; height?: number | string | { min?: number | string; max?: number | string; }; }[]; style?: object; scroll?: boolean; fullsize?: boolean; } export default function GridContainer(props: GridContainer): import("react").JSX.Element; //# sourceMappingURL=GridContainer.d.ts.map