UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 432 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class FaBarChart extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m12.5 20v10h-5v-10h5z m7.5-10v20h-5v-20h5z m20 22.5v2.5h-40v-30h2.5v27.5h37.5z m-12.5-17.5v15h-5v-15h5z m7.5-7.5v22.5h-5v-22.5h5z"/></g> </IconBase> ); } }