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.
23 lines • 843 B
TypeScript
import React from 'react';
interface Slide {
id: number;
src: string;
href: string;
}
interface ThreeDImageCarouselProps {
/** The array of image data for the slider. */
slides: Slide[];
/** Number of visible items in the slider (3 or 5). Default is 5. */
itemCount?: 3 | 5;
/** Enables/Disables automatic sliding. Default is false. */
autoplay?: boolean;
/** Delay in seconds for autoplay. Default is 3. */
delay?: number;
/** Pauses autoplay when the mouse hovers over the slider. Default is true. */
pauseOnHover?: boolean;
/** Tailwind class for the main container (e.g., margins, padding). */
className?: string;
}
export declare const ThreeDImageCarousel: React.FC<ThreeDImageCarouselProps>;
export default ThreeDImageCarousel;
//# sourceMappingURL=ThreeDImageCarousel.d.ts.map