react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 509 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class GoSettings extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path fill="#444" d="m5 35h5v-7.5h-5v7.5z m5-30h-5v12.5h5v-12.5z m12.5 0h-5v5h5v-5z m-20 20h10v-5h-10v5z m15 10h5v-15h-5v15z m-2.5-17.5h10v-5h-10v5z m20-12.5h-5v15h5v-15z m-7.5 17.5v5h10v-5h-10z m2.5 12.5h5v-5h-5v5z"/></g>
</IconBase>
);
}
}