Skip to content
Snippets Groups Projects
Commit 7773e49e authored by mperezsa's avatar mperezsa
Browse files

Upload New File

parent de7bfa68
No related branches found
No related tags found
No related merge requests found
import React from "react";
import GaugeChart from "react-gauge-chart";
function Gauge({ data }) {
return (
<div>
<GaugeChart
colors={["#EA4228", "#F5CD19", "#5BE12C"]}
percent={data / 4}
arcPadding={0.02}
textColor={"#6E6F6A"}
/>
</div>
);
}
export default Gauge;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment