ComponentsSimple GridSimpleGridGitHub LogoSource CodeNPM Logouikit-react-core UsagePropsClassesPlease check the HvGrid component documentation for more advanced grid configurations.Item 1Item 2Item 3Item 4Item 5Item 6colsspacingxssmmdlgxl<HvSimpleGrid cols={2} spacing="sm" > <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 1 </d> </No Display Name> <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 2 </d> </No Display Name> <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 3 </d> </No Display Name> <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 4 </d> </No Display Name> <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 5 </d> </No Display Name> <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 6 </d> </No Display Name> </HvSimpleGrid> <HvSimpleGrid cols={2} spacing="sm" > <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 1 </d> </No Display Name> <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 2 </d> </No Display Name> <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 3 </d> </No Display Name> <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 4 </d> </No Display Name> <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 5 </d> </No Display Name> <No Display Name bgcolor="atmo2"> <d className="flex items-center justify-center"> Item 6 </d> </No Display Name> </HvSimpleGrid>BreakpointsUse the breakpoints prop to define the number of columns and spacing for different widths.Item 1Item 2Item 3Item 4Item 5Item 6Hide Code <div className="w-full"> <HvSimpleGrid cols={2} breakpoints={[ { minWidth: 1600, cols: 4, spacing: "md" }, { minWidth: 1300, cols: 3, spacing: "md" }, { minWidth: 1100, cols: 2, spacing: "sm" }, { minWidth: 800, cols: 1, spacing: "sm" }, ]} > {[...Array(6).keys()].map((i) => ( <HvCard bgcolor="atmo2"> <HvCardContent className="flex items-center justify-center"> Item {i + 1} </HvCardContent> </HvCard> ))} </HvSimpleGrid> </div> <div className="w-full"> <HvSimpleGrid cols={2} breakpoints={[ { minWidth: 1600, cols: 4, spacing: "md" }, { minWidth: 1300, cols: 3, spacing: "md" }, { minWidth: 1100, cols: 2, spacing: "sm" }, { minWidth: 800, cols: 1, spacing: "sm" }, ]} > {[...Array(6).keys()].map((i) => ( <HvCard bgcolor="atmo2"> <HvCardContent className="flex items-center justify-center"> Item {i + 1} </HvCardContent> </HvCard> ))} </HvSimpleGrid> </div>Related components HvGrid Selection ListSkeleton