material-ui
Version:
Material Design UI components built with React
20 lines (14 loc) • 467 B
JSX
const React = require('react/addons');
const PureRenderMixin = React.addons.PureRenderMixin;
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;