1.2.0 • Published 7 months ago

@paylike/react-currency-select v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Paylike currency select

A ReactJS module exporting a select of paylike supported currencies

Usage

Requires ReactJS ^v0.14.2

Pin the dependency to the current version branch to ensure future installs of your application will work. Like so:

"dependencies": {
	"@paylike/react-currency-select": "^1.0.1"
}
var ReactDOM = require('react-dom');
var CurrencySelect = require('@paylike/react-currency-select');

ReactDOM.render(CurrencySelect, {
/*
	value,
	required,
	initial,		// set a text to display in an initial option
	className,
	funding,		// show only funding currencies
	deprecated,		// include deprecated currencies
	exclude, // Array of currency codes to exclude
	filter, // function to filter currencies (( { code, currency, numeric, exponent } ) => Boolean)

	onChange: function( currency ){},
*/
});