import * as React from 'react'; import { cn } from '../utils/cn'; export interface GridProps extends React.HTMLAttributes { cols?: 1 | 2 | 3 | 4 | 5 | 6 | 12; gap?: 'sm' | 'md' | 'lg' | 'xl'; } const Grid = React.forwardRef( ({ className, cols = 3, gap = 'md', ...props }, ref) => { return (
); } ); Grid.displayName = 'Grid'; export { Grid };