react-horizontal-gauge
Horizontal SVG gauge component for React, inspired by react-linear-gauge
Install
``` npm install react-horizontal-gauge --save ```Usage
```javascript import React, { Component } from 'react'; import HorizontalGauge from 'react-horizontal-gauge'; class View extends Component { render() {return (
<div>
...
<HorizontalGauge ticks={gaugeTicks} height={70} width={500} min={0} max={10} value={7.3}/>
...
</div>
);
}
});
```