UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 473 B
const React = require('react'); const PureRenderMixin = require('react-addons-pure-render-mixin'); const SvgIcon = require('../../svg-icon'); const DeviceSignalCellularConnectedNoInternet4Bar = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z"/> </SvgIcon> ); } }); module.exports = DeviceSignalCellularConnectedNoInternet4Bar;