currency-formatter-react

1.1.1 • Public • Published

currency-formatter-react

React component to format number in various currencies

Installations

npm

Through npm

npm install --save currency-formatter-react

Usage

import CurrencyFormatter from 'currency-formatter-react'

Props

Props Options Default Description
value number none Value which need to be format
thousandSeparator boolean true Add thousand separators on number
currency string USD Add Currency Code (INR , USD , GBP ..)
isFloat boolean false make this prop to true if value is float

Supported Currencies

Currency Code Currency Symbol
CAD Canadian Dollar $
EUR Euro
GBP Great Britan Pound £
INR Indian Rupee
JPY Japanese Yen ¥
LKR Sri Lanka Rupee Rs
NZD New Zealand Dollar $
SGD Singapore Dollar $
THB Baht ฿
USD US Dollar $
ZAR Rand R

Examples

<CurrencyFormatter value={1257856} thousandSeparator={true} currency='USD' />

Output : $ 1,257,856

<CurrencyFormatter value={1257856} currency='INR' />

Output : ₹ 1,257,856

<CurrencyFormatter value={1257856} thousandSeparator={true} currency='GBP' />

Output : £ 1,257,856

<CurrencyFormatter
  value={1257856.85}
  currency='INR'
  thousandSeparator={false}
  isFloat={true}
/>

Output : ₹ 12,57,856.85

License

MIT © vinnu214

Readme

Keywords

none

Package Sidebar

Install

npm i currency-formatter-react

Weekly Downloads

1

Version

1.1.1

License

MIT

Unpacked Size

19.4 kB

Total Files

7

Last publish

Collaborators

  • gnanavinaym