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.

17 lines 450 B
import React from "react"; export interface ScrollStackCard { title: string; subtitle?: string; badge?: string; backgroundImage?: string; content?: React.ReactNode; } interface ScrollStackProps { cards: ScrollStackCard[]; cardHeight?: number; scrollPerCard?: number; className?: string; } declare const ScrollStack: React.FC<ScrollStackProps>; export default ScrollStack; //# sourceMappingURL=scroll-stack.d.ts.map