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 • 682 B
TypeScript
export interface CardProps {
title: string;
description: string;
imageSrc: string;
buttonText: string;
buttonLink?: string;
imageAlt?: string;
accentColor?: string;
onClick?: () => void;
}
interface InteractiveCardGalleryProps {
cards: CardProps[];
className?: string;
cardHeight?: string;
columns?: 1 | 2 | 3 | 4;
hoverScale?: number;
transitionDuration?: number;
}
export declare function InteractiveCardGallery({ cards, className, cardHeight, columns, hoverScale, transitionDuration, }: InteractiveCardGalleryProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=interactive-card-gallery.d.ts.map