genericons-neue-react
v1.0.2
Published
Genericons Neue icon set to be used with React
Downloads
2
Readme
Genericons Neue for React
A library to make it easy to use Genericons Neue within React. You only need to import the icons you use, so no extra overhead.
Usage
Here's an example on using within your React project.
- First install the package
$ npm install --save genericons-neue-react
- Using inside a Component
import React from 'react';
import CloudUpload from 'genericons-neue-react/icons/cloud-upload';
const MyUploadButton = () => {
return (
<button>
<CloudUpload />
<span> Upload a new image </span>
</button>
)
}
You can also pass down any properties to the SVG, for example:
import React from 'react';
import CloudUpload from 'genericons-neue-react/icons/cloud-upload';
const MyUploadButton = () => {
return (
<button>
<CloudUpload fill="tomato" />
<span> Upload a new image </span>
</button>
)
}
Building this Package
The following info is for creating this package, if you just want to use the icons in your project, see Usage above.
The source SVG files are from automattic/genericons-neue repository, which gets installed as a dev dependcy.
The convert.js
script runs through the SVG files and creates React Components
(jsx), using the filename as the component name. Component names are CamelCase
so cloud-upload.svg
becomes CloudUpload
.
This build step can be run using: npm run build
and creates the components in
src
directory.
Next we convert the JSX components in src
directory to vanilla javascript
using babel and store the results in icons
directory.