UNPKG

@tiiqu/ui

Version:

A customizable, accessible, and developer-friendly React UI component library powered by Tailwind CSS, TypeScript, and Vite

12 lines (11 loc) 330 B
import { FC, ReactNode } from 'react'; export type CarouselProps = { children: ReactNode[]; className?: string; prevButton?: ReactNode; nextButton?: ReactNode; prevButtonClassName?: string; nextButtonClassName?: string; transitionDuration?: number; }; export declare const Carousel: FC<CarouselProps>;