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