UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 575 B
const React = require('react'); const PureRenderMixin = require('react-addons-pure-render-mixin'); const SvgIcon = require('../../svg-icon'); const HardwareTabletMac = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z"/> </SvgIcon> ); } }); module.exports = HardwareTabletMac;