import { gapClasses, heightClasses, widthClasses } from '../styles/classes' import type { GridProps } from '../types' import { cn } from '../utils' export const Grid: React.FC = ({ children, rows = 1, columns = 1, gap = 'none', height = 'fit', width = 'full', className }) => { return (
{children}
) }