UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 496 B
const React = require('react/addons'); const PureRenderMixin = React.addons.PureRenderMixin; const SvgIcon = require('../../svg-icon'); const DeviceSignalCellularConnectedNoInternet0Bar = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path fill-opacity=".3" d="M22 8V2L2 22h16V8z"/><path d="M20 22h2v-2h-2v2zm0-12v8h2v-8h-2z"/> </SvgIcon> ); } }); module.exports = DeviceSignalCellularConnectedNoInternet0Bar;