All Projects → kirillshevch → react-cryptocoins

kirillshevch / react-cryptocoins

Licence: MIT license
Сryptocurrencies icons as React components

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to react-cryptocoins

Inline Docs.el
Show inline contextual docs in Emacs.
Stars: ✭ 12 (-67.57%)
Mutual labels:  inline
Webworkify Webpack
launch a web worker at runtime that can require() in the browser with webpack
Stars: ✭ 105 (+183.78%)
Mutual labels:  inline
Premailer
Preflight for HTML email
Stars: ✭ 2,173 (+5772.97%)
Mutual labels:  inline
Svgpocketguide
All original content of A Pocket Guide to Writing SVG by Joni Trythall
Stars: ✭ 1,106 (+2889.19%)
Mutual labels:  inline
React Easy Edit
Inline editing library for React
Stars: ✭ 100 (+170.27%)
Mutual labels:  inline
Youtube player
A flutter plugin to play Youtube Videos without API Key in range of Quality(144p, 240p,360p,480p,720p and 1080p).
Stars: ✭ 118 (+218.92%)
Mutual labels:  inline
Amplify
A tiny script allowing inline image zoom
Stars: ✭ 458 (+1137.84%)
Mutual labels:  inline
React Svg Inline
DEPRECATED, I recommend you the tool SVGR
Stars: ✭ 230 (+521.62%)
Mutual labels:  inline
Vue Svg Inline Loader
Webpack loader used for inline replacement of SVG images with actual content of SVG files in Vue projects.
Stars: ✭ 105 (+183.78%)
Mutual labels:  inline
Node Inline Cpp
Inline C++ with Node.js
Stars: ✭ 172 (+364.86%)
Mutual labels:  inline
Actionmailer inline css
Seamlessly integrate Alex Dunae's premailer with ActionMailer.
Stars: ✭ 71 (+91.89%)
Mutual labels:  inline
Cssinliner Extra
CSS Inliner support for Twig
Stars: ✭ 93 (+151.35%)
Mutual labels:  inline
Common Tags
🔖 Useful template literal tags for dealing with strings in ES2015+
Stars: ✭ 1,761 (+4659.46%)
Mutual labels:  inline
Template.scala
C++ Flavored Template Metaprogramming in Scala
Stars: ✭ 40 (+8.11%)
Mutual labels:  inline
Datauri
Generate Data-URI scheme via terminal or node.js
Stars: ✭ 212 (+472.97%)
Mutual labels:  inline
Java Diff Utils
Diff Utils library is an OpenSource library for performing the comparison / diff operations between texts or some kind of data: computing diffs, applying patches, generating unified diffs or parsing them, generating diff output for easy future displaying (like side-by-side view) and so on.
Stars: ✭ 670 (+1710.81%)
Mutual labels:  inline
Jupytergraffiti
Create interactive screencasts inside Jupyter Notebook that anybody can play back
Stars: ✭ 114 (+208.11%)
Mutual labels:  inline
Inline syscall
Inline syscalls made easy for windows on clang
Stars: ✭ 232 (+527.03%)
Mutual labels:  inline
Juice
Juice inlines CSS stylesheets into your HTML source.
Stars: ✭ 2,683 (+7151.35%)
Mutual labels:  inline
React Native See More Inline
Show a "read more", "see more", "read less", "see less" inline with your text in React Native
Stars: ✭ 141 (+281.08%)
Mutual labels:  inline

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.

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].