@rnwonder/react-date-picker
Version:
A lightweight, customizable, and accessible date picker component for React applications.
13 lines (11 loc) • 458 B
TypeScript
import { SelectorProps } from '../Selector';
interface SelectorOptionButtonProps extends Partial<SelectorProps> {
value: string;
index: number;
handleOptionClick: (index: number, value: string, callback?: () => void) => void;
callback?: () => void;
disabled?: boolean;
noButtonAnimation?: boolean;
}
export declare const SelectorOptionButton: (props: SelectorOptionButtonProps) => import("react/jsx-runtime").JSX.Element;
export {};