@open-tender/ui
Version:
A component library for use with the Open Tender web app
11 lines (10 loc) • 396 B
TypeScript
import { Money, NegativeMoney } from '@open-tender/types';
import React from 'react';
import { ScreenConfig } from '../types';
export interface CheckTotalsSublineProps {
config: ScreenConfig;
label: string;
amount: Money | NegativeMoney;
}
declare const CheckTotalsSubline: ({ config, label, amount }: CheckTotalsSublineProps) => React.JSX.Element;
export default CheckTotalsSubline;