UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 561 B
const React = require('react'); const PureRenderMixin = require('react-addons-pure-render-mixin'); const SvgIcon = require('../../svg-icon'); const MapsSatellite = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6l3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z"/> </SvgIcon> ); } }); module.exports = MapsSatellite;