UNPKG

d2-ui

Version:
20 lines (14 loc) 394 B
import React from 'react'; import PureRenderMixin from 'react-addons-pure-render-mixin'; import SvgIcon from '../../svg-icon'; const DeviceSignalCellular0Bar = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path fillOpacity=".3" d="M2 22h20V2z"/> </SvgIcon> ); } }); export default DeviceSignalCellular0Bar;