UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 406 B
const React = require('react/addons'); const PureRenderMixin = React.addons.PureRenderMixin; const SvgIcon = require('../../svg-icon'); const ImageViewCompact = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M3 19h6v-7H3v7zm7 0h12v-7H10v7zM3 5v6h19V5H3z"/> </SvgIcon> ); } }); module.exports = ImageViewCompact;