PriceDisplay

Domain

Currency formatter using Intl.NumberFormat. Supports any ISO 4217 code and locale. Strikethrough prop renders an original/crossed-out price.

Sizes

Preview
₺1.299,99₺1.299,99₺1.299,99₺1.299,99
Code
<PriceDisplay amount={1299.99} currency="USD" size="sm" />
<PriceDisplay amount={1299.99} currency="USD" size="md" />
<PriceDisplay amount={1299.99} currency="USD" size="lg" />
<PriceDisplay amount={1299.99} currency="USD" size="xl" />

Multi-currency + strikethrough

Preview
₺2.499,00₺1.799,00
$89.9974,99 €
Code
<PriceDisplay amount={2499} currency="TRY" size="lg" />
<PriceDisplay amount={1799} currency="TRY" size="lg" strikethrough />
<PriceDisplay amount={89.99} currency="USD" locale="en-US" size="lg" />
<PriceDisplay amount={74.99} currency="EUR" locale="de-DE" size="lg" />
Sourcemodules/domains/common/money/PriceDisplay.tsx