react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 512 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class FaBuysellads extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path fill="#444" d="m23.4 24.2h-6.5l3.2-12.3z m1.9 7.2h7l-7.2-22.8h-9.9l-7.2 22.8h6.9l8.6-7z m12-22.1v21.4q0 2.6-1.9 4.5t-4.5 1.9h-21.5q-2.6 0-4.5-1.9t-1.9-4.5v-21.4q0-2.6 1.9-4.5t4.5-1.9h21.5q2.6 0 4.5 1.9t1.9 4.5z"/></g>
</IconBase>
);
}
}