react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 482 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class IoSocialCss3 extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path fill="#444" d="m20 26.5z m-15-24h30l-2.7 31.5-12.3 3.5-12.3-3.5z m22.7 26.2l1.8-19.7h-18.9l0.3 3.8h14.4l-0.3 4h-9.5l0.4 3.9h8.7l-0.4 5-4.2 1.2-4.1-1.2-0.4-3.1h-3.7l0.5 6.1 7.7 2.2z"/></g>
</IconBase>
);
}
}