@rnwonder/react-date-picker
Version:
A lightweight, customizable, and accessible date picker component for React applications.
11 lines (9 loc) • 320 B
TypeScript
import { RnClassName, RnColor, Locale, WeekDaysType } from '../../interface/general';
import { default as React } from 'react';
interface IProps extends RnColor, RnClassName {
locale?: Locale;
weekDaysType?: WeekDaysType;
weekStartDay?: number;
}
export declare const WeekDays: React.FC<IProps>;
export {};