import { NumericFormat } from 'react-number-format';
import {
InfoWrapKeys,
AmountInfoWrapProps,
SettlementPeriodType
} from '@/entities/settlement/model/types';
export const AmountInfoWrap = ({
periodType,
amountInfo,
}: AmountInfoWrapProps) => {
return (
<>
금액 정보
{ (periodType === SettlementPeriodType.SETTLEMENT_DATE) &&
-
거래금액 합계
-
PG 수수료 합계
-
· 결제수수료
-
· 에스크로 수수료
-
· 인증 수수료
-
· VAT
-
보류
-
해제
-
상계
-
정산금액
5,731,742
}
{ (periodType === SettlementPeriodType.TRANSACTION_DATE) &&
-
거래금액
-
결제 수수료
-
에스크로 수수료
-
인증 수수료
-
VAT
-
정산예정금액
-
정산전 취소상계
-
정산금액
}
>
);
};