UNPKG

@rnwonder/react-date-picker

Version:

A lightweight, customizable, and accessible date picker component for React applications.

10 lines (8 loc) 336 B
import { RnClassName } from '../../interface/general'; import { default as React } from 'react'; interface DatePickerWeekDaysProps extends Pick<RnClassName, "weekNamesRowClass" | "daysRowClass"> { children: React.ReactNode; header?: boolean; } export declare const DatePickerWeek: React.FC<DatePickerWeekDaysProps>; export {};