UNPKG

@start-base/start-ui

Version:

<p align="center"> <a href="https://startbase.dev" target="_blank"> <img src="https://startbase.dev/apple-touch-icon.png" width="60px" style="padding-top: 60px" /> </a> </p>

18 lines (14 loc) 483 B
import React from 'react'; interface BentoItem { element: React.ReactNode; width: number; height: number; } type BentoItems = BentoItem[]; interface BentoGridProps extends React.AllHTMLAttributes<HTMLDivElement> { items: BentoItems; gridCols?: number; rowHeight?: number; } declare const BentoGrid: React.ForwardRefExoticComponent<BentoGridProps & React.RefAttributes<HTMLDivElement>>; export { type BentoGridProps, type BentoItem, BentoGrid as default };