UNPKG

@transkripid/flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS - Transkrip.id fork

16 lines (15 loc) 415 B
import type { FC } from 'react'; export interface FlowbiteDatepickerViewsMonthsTheme { items: { base: string; item: { base: string; selected: string; disabled: string; }; }; } export interface DatepickerViewsMonthsProps { theme?: FlowbiteDatepickerViewsMonthsTheme; } export declare const DatepickerViewsMonth: FC<DatepickerViewsMonthsProps>;