UNPKG

@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

11 lines (10 loc) 338 B
import { Handlers, ScreenConfig } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const AccessibilityButton: ({ children }: { children: (props: { config: ScreenConfig; isAccessibilityOn?: boolean; handlers: Handlers; }) => ReactNode; }) => ReactNode; export default AccessibilityButton;