React component for Cryptocoins icons
npm install react-cryptocoins
``javascript
import { Btc } from 'react-cryptocoins';
class MyClass extends React.Component {
render() {
return
}
}
```
Or include icons from the compiled folder ./dist.javascript
var Btc = require('react-cryptocoins/dist/icons/btc');
var MyComponent = React.createClass({
render: function () {
return (
);
}
});
``
You can also include the whole icon pack:javascript
import * as Icon from 'react-cryptocoins';
class MyClass extends React.Component {
render() {
return
}
}
`
Icons can be configured with inline props:
`javascript``
The components is available as open source under the terms of the MIT License.