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.
21 lines • 636 B
TypeScript
import React from "react";
export interface Image3DGalleryProps {
images?: string[];
width?: number;
height?: number;
spacing?: number;
rotationAngle?: number;
borderRadius?: number;
autoRotate?: boolean;
autoRotateSpeed?: number;
className?: string;
style?: React.CSSProperties;
onImageClick?: (index: number) => void;
}
/**
* ThreeDImageGallery Component
* Renders a responsive 3D image gallery with interactive and auto-rotate features.
*/
declare const ThreeDImageGallery: React.FC<Image3DGalleryProps>;
export default ThreeDImageGallery;
//# sourceMappingURL=3d-image-gallery.d.ts.map