UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

13 lines (12 loc) 472 B
import React, { ReactNode } from 'react'; import { Handlers, ScreenConfig } from '../types'; export interface KeypadModalProps { config: ScreenConfig; modalContentConfig: ScreenConfig; handlers: Handlers; subtitle?: string | null; title: string; renderKeypad: () => ReactNode; } declare const KeypadModal: ({ config, modalContentConfig, handlers, subtitle, title, renderKeypad }: KeypadModalProps) => React.JSX.Element; export default KeypadModal;