@open-tender/ui
Version:
A component library for use with the Open Tender web app
10 lines (9 loc) • 318 B
TypeScript
import React from 'react';
import { ScreenConfig } from '../types';
export interface CheckoutHeaderProps {
config: ScreenConfig;
title: string;
subtitle?: string | null;
}
declare const CheckoutHeader: ({ config, title, subtitle }: CheckoutHeaderProps) => React.JSX.Element;
export default CheckoutHeader;