An open API service indexing awesome lists of open source software.

https://github.com/saulhoward/react-evil-icons

Evil icons as react components
https://github.com/saulhoward/react-evil-icons

evil-icons javascript react-components

Last synced: 11 months ago
JSON representation

Evil icons as react components

Awesome Lists containing this project

README

          

# React Evil Icons

React components for the excellent http://evil-icons.io/

## A React component for the Icons

```html







```

```javascript

var React = require('react');
var Icon = require('react-evil-icons');

React.render(
,
document.getElementById('app')
);

```

## A gulp task to write the icon sprite into the HTML

```javascript

var evilIconSprite = require('./node_modules/react-evil-icons/tasks/icons');

evilIconSprite('./src/index.html', './_site')

```