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