UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

16 lines 516 B
import React from "react"; interface BentoCardData { title: string; description: string; icon: any; className?: string; background?: React.ReactNode; } interface BentoGridProps extends React.HTMLAttributes<HTMLDivElement> { cards: BentoCardData[]; columns?: number; rowHeight?: string; } export declare const BentoGrid: ({ cards, columns, rowHeight, className, ...props }: BentoGridProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=bento-grid.d.ts.map