import React from 'react' import { numberWithCommas } from 'App/utils'; const AvgLabel = ({ className = '', text, count, unit}) =>
{text} {count ? numberWithCommas(Math.round(count)) : 0} {unit && {unit}}
export default AvgLabel