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 • 580 B
TypeScript
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;
}
declare const HorizontalCarousel: React.FC<HorizontalCarouselProps>;
export default HorizontalCarousel;
//# sourceMappingURL=scroll-trigger-carousel.d.ts.map