UNPKG

hoda-react

Version:

<div align="center"> <h1>:construction: flowbite-react (unreleased) :construction:</h1> <p> <a href="https://flowbite-react.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src=".github/assets/flowbite-react-github.png"> <

35 lines (34 loc) 815 B
import type { ComponentProps, FC, PropsWithChildren, ReactNode } from 'react'; export interface FlowbiteCarouselTheme { base: string; indicators: { active: { off: string; on: string; }; base: string; wrapper: string; }; item: { base: string; wrapper: string; }; control: { base: string; icon: string; }; leftControl: string; rightControl: string; scrollContainer: { base: string; snap: string; }; } export interface CarouselProps extends PropsWithChildren<ComponentProps<'div'>> { indicators?: boolean; leftControl?: ReactNode; rightControl?: ReactNode; slide?: boolean; slideInterval?: number; } export declare const Carousel: FC<CarouselProps>;