UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 442 B
const React = require('react/addons'); const PureRenderMixin = React.addons.PureRenderMixin; const SvgIcon = require('../../svg-icon'); const DeviceStorage = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z"/> </SvgIcon> ); } }); module.exports = DeviceStorage;