UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 615 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdSettingsSystemDaydream extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path fill="#444" d="m35 31.7v-23.4h-30v23.4h30z m0-26.7c1.8 0 3.4 1.6 3.4 3.4v23.2c0 1.8-1.6 3.4-3.4 3.4h-30c-1.8 0-3.4-1.6-3.4-3.4v-23.2c0-1.8 1.6-3.4 3.4-3.4h30z m-20 21.6c-2.7 0-5-2.2-5-5 0-2.5 2-4.6 4.5-4.9h0.3c0.9-1.9 2.9-3.3 5.2-3.3 3 0 5.4 2.1 5.8 5h0.1c2.2 0 4.1 1.8 4.1 4.1s-1.9 4.1-4.1 4.1h-10.9z"/></g> </IconBase> ); } }