bento-grid
jolyui-ui/bento-gridFreeComponent
jolyui/ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by jolyui/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://jolyui.dev/r/bento-grid.jsonSource
1import * as React from "react";2import { cn } from "@/lib/utils";34interface BentoGridProps extends React.HTMLAttributes<HTMLDivElement> {5 children: React.ReactNode;6}78const BentoGrid = React.forwardRef<HTMLDivElement, BentoGridProps>(9 ({ className, children, ...props }, ref) => {10 return (11 <div12 ref={ref}13 className={cn(14 "grid auto-rows-[minmax(180px,1fr)] grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-3",15 className,16 )}17 {...props}18 >19 {children}20 </div>21 );22 },23);24BentoGrid.displayName = "BentoGrid";2526export { BentoGrid };
Files it writes
More from jolyui/ui
All 199 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| ai-prompt-boxai-prompt-box | jolyui/ui | Components | Free | 4 deps | |
| animated-beamanimated-beam | jolyui/ui | Components | Free | 1 dep | |
| animated-tableanimated-table | jolyui/ui | Components | Free | 2 deps | |
| animated-theme-toggleanimated-theme-toggle | jolyui/ui | Components | Free | 2 deps | |
| animated-toastanimated-toast | jolyui/ui | Components | Free | 2 deps | |
| animated-tooltipanimated-tooltip | jolyui/ui | Components | Free | 1 dep | |
| buttonbutton | jolyui/ui | Components | Free | 3 deps | |
| calendercalender | jolyui/ui | Components | Free | 3 deps |
