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.

20 lines (19 loc) 534 B
import React, { ReactNode } from "react"; interface CarouselItem { id: string | number; content: ReactNode; contentid: ReactNode; } interface HorizontalCarouselProps { items: CarouselItem[]; itemWidth?: string; itemHeight?: string; gap?: string; scrollLength?: string; initialXOffset?: string; finalXOffset?: string; children?: ReactNode; afterCarouselContent?: ReactNode; } export declare const HorizontalCarousel: React.FC<HorizontalCarouselProps>; export default HorizontalCarousel;