react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 418 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class IoAndroidContract extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path fill="#444" d="m5 29v-4h10v10h-4v-6h-6z m6-18v-6h4v10h-10v-4h6z m14 24v-10h10v4h-6v6h-4z m4-24h6v4h-10v-10h4v6z"/></g>
</IconBase>
);
}
}