react-carousel-latest
Version:
Provides an image carousel React UI component.
14 lines (13 loc) • 349 B
TypeScript
import { JSX } from "react/jsx-runtime";
type CardSliderProps = {
title: string;
category: string;
description: string;
link?: string;
};
declare const CardSlider: ({ slides, shape, randomBackground, }: {
slides: CardSliderProps[];
shape: string;
randomBackground?: boolean;
}) => JSX.Element;
export default CardSlider;