flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
21 lines (20 loc) • 536 B
TypeScript
import type { FC } from "react";
import type { DeepPartial } from "../../../types";
export interface FlowbiteDatepickerViewsDaysTheme {
header: {
base: string;
title: string;
};
items: {
base: string;
item: {
base: string;
selected: string;
disabled: string;
};
};
}
export interface DatepickerViewsDaysProps {
theme?: DeepPartial<FlowbiteDatepickerViewsDaysTheme>;
}
export declare const DatepickerViewsDays: FC<DatepickerViewsDaysProps>;