import React from 'react' import Icon from './Icon' import * as helpers from '../helpers' export default class Popularity extends React.Component{ constructor(props){ super(props) } render(){ if (this.props.popularity === undefined || this.props.popularity === null){ return null; } return ( 10 ? " filled" : "")}> 30 ? " filled" : "")}> 50 ? " filled" : "")}> 70 ? " filled" : "")}> 90 ? " filled" : "")}> {this.props.popularity}% popularity ); } }