All Projects â†’ xDae â†’ React Currency Formatter

xDae / React Currency Formatter

Licence: mit
đŸ’” react component for currency formatting

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Currency Formatter

Javascript Number Formatter
Lightweight & Fast JavaScript Number Formatter
Stars: ✭ 119 (+213.16%)
Mutual labels:  currency, formatter
react-numeric
A react component for formatted number form fields
Stars: ✭ 30 (-21.05%)
Mutual labels:  formatter, currency
Easymoney
Library for operating with monetary values in JavaScript and Typescript đŸ’”
Stars: ✭ 145 (+281.58%)
Mutual labels:  currency, formatter
Anyformatkit
Simple text formatting in Swift
Stars: ✭ 296 (+678.95%)
Mutual labels:  currency, formatter
formatters
A javascript library for formatting and manipulating.
Stars: ✭ 14 (-63.16%)
Mutual labels:  formatter, currency
Go Money
Go implementation of Fowler's Money pattern
Stars: ✭ 887 (+2234.21%)
Mutual labels:  currency, formatter
Wonders
🌈 Declarative JavaScript framework to build command-line applications.
Stars: ✭ 34 (-10.53%)
Mutual labels:  component
React Native Swipeable Cards Demo
Facebook-style swipeable cards with React Native Interactable.
Stars: ✭ 36 (-5.26%)
Mutual labels:  component
Vue Share Buttons
🔗A set of social buttons for Vue.js
Stars: ✭ 34 (-10.53%)
Mutual labels:  component
Jcnavigator
A decoupled navigator framework of jumping between modules or apps for iOS development.
Stars: ✭ 33 (-13.16%)
Mutual labels:  component
Dom99
Extend html with directives
Stars: ✭ 37 (-2.63%)
Mutual labels:  component
Hellobooks
A Single-Page Library Management App built with nodejs, express and react and redux
Stars: ✭ 37 (-2.63%)
Mutual labels:  component
Jupyterlab black
A JupyterLab extension to apply Black formatter to code within codecell.
Stars: ✭ 35 (-7.89%)
Mutual labels:  formatter
React Password Mask
Show/hide the contents of a password field.
Stars: ✭ 34 (-10.53%)
Mutual labels:  component
Google Libphonenumber
The up-to-date and reliable Google's libphonenumber package for node.js.
Stars: ✭ 984 (+2489.47%)
Mutual labels:  formatter
React Calendar
A React Native inspired date list renderer
Stars: ✭ 34 (-10.53%)
Mutual labels:  component
Create Wxapp Page
戛ć»șćŸźäżĄć°çš‹ćșéĄ”éąçš„ć‘œä»€èĄŒć·„ć…·
Stars: ✭ 37 (-2.63%)
Mutual labels:  component
React Base Table
A react table component to display large datasets with high performance and flexibility
Stars: ✭ 966 (+2442.11%)
Mutual labels:  component
Scalaunfmt
Generates the .scalafmt.conf that have minimum change to existing your scala codebase on running scalafmt.
Stars: ✭ 35 (-7.89%)
Mutual labels:  formatter
Vue Flip
A Vue.js component to flip elements.
Stars: ✭ 37 (-2.63%)
Mutual labels:  component

đŸ’” react currency formatter

npm npm David Travis license

đŸ’» DEMO!

Usage

Simple

import Currency from 'react-currency-formatter';

<Currency
  quantity={45685}
  currency="EUR"
/>

Complex

import Currency from 'react-currency-formatter';

<Currency
  quantity={45685}          // Required
  currency="USD"            // Optional (USD by default)
  locale="en_EN"            // Optional
  pattern="##,### !"        // Optional
  decimal=","               // Optional
  group="."                 // Optional
/>

TypeScript

import * as React from 'react'
import * as CurrencyFormatter from 'react-currency-formatter'

type Props = {
	price: number,
	currency: string,
}

const ProductionPrice: React.SFC<Props> = (props: Props) => (
	<CurrencyFormatter quantity={props.price} currency={props.currency} />
)

export default ProductionPrice

Support

Please open an issue for support.

Contributing

Please contribute using Github Flow. Create a branch, add commits, and open a pull request.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].