@open-tender/store
Version:
A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API
12 lines (11 loc) • 388 B
TypeScript
import { Handlers, KeypadProps, KeypadType } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const Keypad: ({ children, maxLength, type, value, handlers, isEmail }: {
children: (props: KeypadProps) => ReactNode;
maxLength?: number;
type?: KeypadType;
value: string;
handlers: Handlers;
isEmail?: boolean;
}) => ReactNode;
export default Keypad;