UNPKG

@rnwonder/solid-date-picker

Version:

A responsive, highly-customizable datepicker component for SolidJS.

16 lines (15 loc) 544 B
import { Setter } from "solid-js"; import { SelectorProps } from "../Selector"; export declare const defaultSelectorProps: { option: () => number; setOption: () => void; optionsArray: never[]; }; export interface SelectorTwoProps extends Partial<SelectorProps> { setSelectorTwoProps?: Setter<SelectorProps>; setShowSelectorTwo?: Setter<boolean>; close?: () => void; monthSelectorTopLabel?: string; } declare const SelectorTwo: (props: SelectorTwoProps) => import("solid-js").JSX.Element; export default SelectorTwo;