UNPKG

@preamp/datepicker

Version:

VideoAmp's Component library

22 lines (21 loc) 550 B
import { ClassNames } from 'react-day-picker/types'; export interface DateRange { from: Date; to: Date; } export interface DatePickerClassNames extends ClassNames { navBarTitle: string; navIconRight: string; navIconLeft: string; dateWrapper: string; date: string; } export interface DatePickerInputClassNames extends DatePickerClassNames { overlayWrapper: string; overlay: string; } export interface DatePickerInputMap extends ClassNames { container: string; overlayWrapper: string; overlay: string; }