react-graphics
v2.2.3
Published
A collection of SVGs as renderable, customizable React components.
Downloads
6
Readme
react-graphics
A collection of SVGs as renderable, customizable React components.
Installation
Install the package with NPM:
$ npm install react-graphics
Usage
Example:
import React from "react";
import ReactDOM from "react-dom";
import { Male, Female, Heart, Clock } from "react-graphics";
ReactDOM.render((
<div className="graphics">
<Male color="#419fcf" />
<Female color="#f378ac" />
<Heart color="#e50f31" />
<Clock color="#606060" minutes="20" />
</div>
), document.getElementById("app"));