UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

10 lines (9 loc) 299 B
import React from 'react'; import { ScreenConfig } from '../types'; export interface ModalHeaderProps { config: ScreenConfig; title: string; subtitle?: string; } declare const ModalHeader: ({ config, title, subtitle }: ModalHeaderProps) => React.JSX.Element; export default ModalHeader;