Currency

import Currency from 'frui/formats/Currency';
Copy

Props

NameTypeRequiredNotes
classNamestringNoStandard HTML class names
flagbooleanNoShow flag
lgbooleanNoShow large currency flag
mdbooleanNoShow medium size currency flag
smbooleanNoShow small currency flag
styleCSS ObjectNoStandard CSS object
textbooleanNoShow currency text
valuestringYesDefault value

Basics

🇦🇸US Dollar
<Currency value="USD" />
Copy

Customize

You can apply different sizes to the Currency format.

Flag

Use flag prop to hide the currency flag.

US Dollar
<Currency flag={false} value="USD" />
Copy

Sizes

Use sm, md, or lg props to change the size of the currency flag.

🇦🇸US Dollar
<Currency lg value="USD" />
Copy

You can also add your own custom class to Currency format or use any combination of frui-format-country, and frui-format-country-flag CSS classes.