nextuiq
Version:
NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat
20 lines (19 loc) • 636 B
TypeScript
import { default as React } from 'react';
export interface GridProps extends React.HTMLAttributes<HTMLDivElement> {
children: React.ReactNode;
cols?: number | {
sm?: number;
md?: number;
lg?: number;
xl?: number;
};
rows?: number;
gap?: number | {
x?: number;
y?: number;
};
minChildWidth?: string;
autoFit?: boolean;
autoFlow?: 'row' | 'col' | 'dense' | 'row dense' | 'col dense';
}
export declare function Grid({ children, cols, rows, gap, className, minChildWidth, autoFit, autoFlow, ...props }: GridProps): import("react/jsx-runtime").JSX.Element;