UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

9 lines (8 loc) 295 B
import React from 'react'; import { Handlers, ScreenConfig } from '../types'; export interface CancelButtonProps { config: ScreenConfig; handlers: Handlers; } declare const CancelButton: ({ config, handlers }: CancelButtonProps) => React.JSX.Element | null; export default CancelButton;