1.0.11 • Published 6 years ago

react-cryptocoins v1.0.11

Weekly downloads
61
License
MIT
Repository
github
Last release
6 years ago

React Cryptocoins Icons

npm

SVG cryptocurrencies icons as React components.

Designed by allienworks

Installation

npm install react-cryptocoins --save

Usage

import { Btc } from 'react-cryptocoins';

class MyClass extends React.Component {
  render() {
    return <Btc />
  }
}

Or include icons from the compiled folder ./dist.

var Btc = require('react-cryptocoins/dist/icons/btc');

var MyComponent = React.createClass({
  render: function () {
    return (
      <Btc />
    );
  }
});

You can also include the whole icon pack:

import * as Icon from 'react-cryptocoins';

class MyClass extends React.Component {
  render() {
    return <Icon.Eth />
  }
}

Icons can be configured with inline props:

<Icon.Eth color="red" size={48} />

License

The components is available as open source under the terms of the MIT License.

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago