UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 439 B
const React = require('react'); const PureRenderMixin = require('react-addons-pure-render-mixin'); const SvgIcon = require('../../svg-icon'); const ImageCrop = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z"/> </SvgIcon> ); } }); module.exports = ImageCrop;