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 • 570 B
TypeScript
import React from "react";
export type CardContent = {
id: string | number;
title?: string;
description?: string;
icon?: React.ReactNode;
bgClass?: string;
};
type SlidingCardsProps = {
cards: CardContent[];
className?: string;
cardSize?: string;
centerIcon?: React.ReactNode;
visibleRange?: number;
onCardClick?: (index: number) => void;
autoPlay?: boolean;
autoPlayInterval?: number;
};
declare const SlidingCards: React.FC<SlidingCardsProps>;
export default SlidingCards;
//# sourceMappingURL=sliding-cards.d.ts.map