@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) • 344 B
TypeScript
import { CancelButtonProps } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const CancelButton: ({ navigate, children, route }: {
route?: string;
navigate: (route: string) => void;
children: (props: CancelButtonProps & {
route?: string;
}) => ReactNode;
}) => ReactNode;
export default CancelButton;