UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

16 lines (15 loc) 421 B
import type { FC } from "react"; export interface FlowbiteDatepickerViewsDecadesTheme { items: { base: string; item: { base: string; selected: string; disabled: string; }; }; } export interface DatepickerViewsDecadesProps { theme?: FlowbiteDatepickerViewsDecadesTheme; } export declare const DatepickerViewsDecades: FC<DatepickerViewsDecadesProps>;