UNPKG

react-money-keyboard-simple

Version:

Lightweight and customizable React component that provides a virtual numeric keyboard designed specifically for money input fields.

11 lines (9 loc) 273 B
type KeyboardProps = { handleBackspace: () => void; handleNumberClick: (value: string) => void; handleSubmit: () => void; BackspaceIcon?: React.ReactNode; titleBtnEnter?: string; }; declare const Keyboard: React.FC<KeyboardProps>; export { Keyboard };