reablocks
Version:
Component library for React
18 lines (17 loc) • 519 B
TypeScript
import { CalendarTheme } from '../Calendar';
import { InputTheme } from '../Input';
export interface DateInputTheme {
/** Theme applied to the underlying input element. */
input: InputTheme;
/** Theme applied to the calendar popover. */
calendar: CalendarTheme;
/** Class names for the preset list and its options. */
preset: {
list: string;
option: {
base: string;
active: string;
};
};
}
export declare const dateInputTheme: DateInputTheme;