UNPKG

@rnwonder/react-date-picker

Version:

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

12 lines (10 loc) 377 B
import { default as React } from 'react'; interface ButtonProps extends React.ComponentProps<"button"> { setHeight?: boolean; disabled?: boolean; selected?: boolean; noButtonAnimation?: boolean; tabIndex?: number; } export declare const Button: React.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>; export {};