@rnwonder/react-date-picker
Version:
A lightweight, customizable, and accessible date picker component for React applications.
12 lines (10 loc) • 683 B
TypeScript
import { SelectorProps } from '../Selector';
import { SelectorType } from '../../interface/general';
import { default as React } from 'react';
interface Props extends Pick<SelectorProps, "monthYearTriggerBtnClass" | "useValueAsName" | "textColor" | "option" | "twoMonthsDisplay" | "optionsArray">, Omit<React.ComponentProps<"button">, "type"> {
isOpen: boolean;
type: SelectorType;
noButtonAnimation?: boolean;
}
export declare const SelectorTriggerButton: ({ noButtonAnimation, monthYearTriggerBtnClass, twoMonthsDisplay, type, isOpen, option, optionsArray, useValueAsName, textColor, children, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
export {};