@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 355 B
TypeScript
import React from 'react';
import { AcceptedPaymentApi } from "../../../care/interfaces/types";
type TPaymentListProps = {
payments: AcceptedPaymentApi[];
className?: string;
isName?: boolean;
};
export declare const PaymentList: ({ payments, className, isName, }: TPaymentListProps) => React.JSX.Element;
export default PaymentList;