import { Screen, View, Text, Card, Grid } from '../index'; export const GridExamples = () => { return ( Grid Examples {/* Fixed Columns */} Fixed Columns {Array.from({ length: 6 }, (_, i) => ( Item {i + 1} ))} {/* Responsive Columns */} Responsive Columns 1 col on mobile, 2 on tablet, 4 on desktop {Array.from({ length: 8 }, (_, i) => ( Card {i + 1} Responsive ))} {/* Gap Variants */} Gap Variants gap="xs" {Array.from({ length: 4 }, (_, i) => ( XS ))} gap="md" {Array.from({ length: 4 }, (_, i) => ( MD ))} gap="xl" {Array.from({ length: 4 }, (_, i) => ( XL ))} {/* Dashboard Layout */} Dashboard Layout Revenue $12,345 Users 1,234 Orders 567 Growth +12% {/* Grid with Padding */} Grid with Padding {Array.from({ length: 4 }, (_, i) => ( Padded Item {i + 1} ))} ); };