const Price = ({ amount, currencyCode = 'USD', ...props }: { amount: string; currencyCode: string; } & React.ComponentProps<'p'>) => (
{`${new Intl.NumberFormat(undefined, { style: 'currency', currency: currencyCode, currencyDisplay: 'narrowSymbol' }).format(parseFloat(amount))}`} {` ${currencyCode}`}
); export default Price;