react-calendar-kit
Version:
React Calendar Kit is a powerful and flexible library for building accessible and highly customizable calendar and date/time picker components in your React applications. React Calendar Kit provides a solid foundation for creating inclusive user experienc
17 lines (14 loc) • 507 B
text/typescript
import { CSSProperties } from 'react';
type InputClassNames = {
root?: string | undefined;
group?: string | undefined;
rangeGroup?: string | undefined;
label?: string | undefined;
container?: string | undefined;
segmentWrapper?: string | undefined;
segment?: string | undefined;
separator?: string | undefined;
};
type InputClasses = keyof InputClassNames;
type InputStyles = Record<InputClasses, CSSProperties>;
export type { InputClassNames, InputClasses, InputStyles };