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.
22 lines (21 loc) • 647 B
TypeScript
export interface ThreeDCarouselItem {
id: number;
title: string;
brand: string;
description: string;
tags: string[];
imageUrl: string;
link: string;
}
interface ThreeDCarouselProps {
items: ThreeDCarouselItem[];
autoRotate?: boolean;
rotateInterval?: number;
cardHeight?: number;
title?: string;
subtitle?: string;
tagline?: string;
isMobileSwipe?: boolean;
}
export declare const ThreeDCarousel: ({ items, autoRotate, rotateInterval, cardHeight, title, subtitle, tagline, isMobileSwipe, }: ThreeDCarouselProps) => import("react/jsx-runtime").JSX.Element;
export default ThreeDCarousel;