@rnwonder/solid-date-picker
Version:
A responsive, highly-customizable datepicker component for SolidJS.
10 lines (9 loc) • 316 B
TypeScript
import { Component } from "solid-js";
import { RnClassName, RnColor, Locale, WeekDaysType } from "../../interface/general";
interface IProps extends RnColor, RnClassName {
locale?: Locale;
weekDaysType?: WeekDaysType;
weekStartDay?: number;
}
export declare const WeekDays: Component<IProps>;
export {};