react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 1.11 kB
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdPermDataSetting extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path fill="#444" d="m31.6 34.1c1.4 0 2.5-1.1 2.5-2.5s-1.1-2.5-2.5-2.5-2.5 1.1-2.5 2.5 1.1 2.5 2.5 2.5z m6.2-1.6l1.8 1.3c0.2 0.2 0.2 0.4 0.1 0.6l-1.7 2.9c0 0.1-0.3 0.3-0.5 0.2l-2-0.9c-0.4 0.4-1 0.6-1.4 0.8l-0.4 2.3c0 0.2-0.2 0.3-0.4 0.3h-3.3c-0.2 0-0.5-0.1-0.5-0.3l-0.3-2.3c-0.5-0.2-0.9-0.4-1.4-0.8l-2 0.9c-0.3 0.1-0.5-0.1-0.6-0.2l-1.6-2.9c-0.1-0.2-0.1-0.4 0.1-0.6l1.8-1.3c0-0.2-0.1-0.5-0.1-0.9s0.1-0.5 0.1-0.7l-1.8-1.4c-0.2-0.2-0.2-0.4-0.1-0.6l1.6-2.9c0.1-0.1 0.4-0.2 0.6-0.1l2 0.8c0.5-0.3 1-0.6 1.4-0.8l0.3-2.2c0-0.3 0.3-0.3 0.5-0.3h3.3c0.2 0 0.5 0 0.5 0.3l0.3 2.2c0.5 0.2 0.9 0.5 1.4 0.8l2-0.8c0.2-0.1 0.5 0 0.6 0.1l1.6 2.9c0.1 0.2 0.1 0.4-0.1 0.6l-1.8 1.4c0.1 0.2 0.1 0.4 0.1 0.7s-0.1 0.7-0.1 0.9z m-6.2-13.4c-6.8 0-12.5 5.7-12.5 12.5 0 0.6 0.1 1.2 0.2 1.8h-19.3l33.4-33.4-0.1 19.3c-0.6-0.1-1.1-0.2-1.7-0.2z"/></g>
</IconBase>
);
}
}