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.

15 lines 523 B
import React from "react"; export interface CompMarqueeItem { id: string; content: React.ReactNode; href?: string; target?: "_blank" | "_self" | "_parent" | "_top"; } export interface ThreeDCompMarqueeProps { compItems: CompMarqueeItem[]; className?: string; onCompItemClick?: (item: CompMarqueeItem, index: number) => void; } export declare const ThreeDCompMarquee: React.FC<ThreeDCompMarqueeProps>; export default ThreeDCompMarquee; //# sourceMappingURL=3d-MarqueewithCustomComponents.d.ts.map