import React from 'react';
import { smartFormatter } from 'src/utils/amount-helpers';

export interface CurrencyFormatProps {
    amount: number;
    currencyCode: string;
}

export default function CurrencyFormat({
    amount,
    currencyCode,
}: CurrencyFormatProps) {
    const formattedAmount = smartFormatter(amount, currencyCode);
    return <span className="FormattedCurrency">{formattedAmount}</span>;
}
