@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
18 lines (17 loc) • 531 B
TypeScript
import React from "react";
import { AppTheme } from "theme";
export interface GridProps {
className?: string;
children: React.ReactNode;
columns?: number;
maxColumns?: number;
minColumnWidth?: string;
gap?: keyof AppTheme["spacing"];
rowHeight?: string;
align?: "start" | "center" | "end" | "stretch";
justify?: "start" | "center" | "end" | "space-between" | "space-around";
responsive?: boolean;
autoFit?: boolean;
dense?: boolean;
}
export declare const Grid: React.FC<GridProps>;