import React from 'react' import stl from './Bar.module.css' const Bar = ({ className = '', width = 0, avg, domain, color }) => { return (
0 ? width : 5 }%`, backgroundColor: color }}>
{`${avg}`}
{domain}
) } export default Bar