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 467 B
import React from "react"; export interface FeatureItem { icon: any; title: string; description: string; image: string; } export interface ScrollCarouselProps { features: FeatureItem[]; className?: string; maxScrollHeight?: number; } export declare const ScrollCarousel: React.ForwardRefExoticComponent<ScrollCarouselProps & React.RefAttributes<HTMLDivElement>>; export default ScrollCarousel; //# sourceMappingURL=scroll-carousel.d.ts.map