UNPKG

lightswind

Version:

A professionally designed component library & templates market that brings together functionality, accessibility, and beautiful aesthetics for modern applications.

15 lines (14 loc) 408 B
export interface SeasonCardProps { title: string; subtitle: string; description: string; imageSrc: string; imageAlt?: string; className?: string; } interface SeasonalHoverCardsProps { cards: SeasonCardProps[]; className?: string; } export declare function SeasonalHoverCards({ cards, className, }: SeasonalHoverCardsProps): import("react/jsx-runtime").JSX.Element; export {};