UNPKG

material-ui

Version:

Material Design UI components built with React

22 lines (16 loc) 522 B
'use strict'; var React = require('react'); var PureRenderMixin = require('react-addons-pure-render-mixin'); var SvgIcon = require('../../svg-icon'); var ActionPolymer = React.createClass({ displayName: 'ActionPolymer', mixins: [PureRenderMixin], render: function render() { return React.createElement( SvgIcon, this.props, React.createElement('path', { d: 'M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8z' }) ); } }); module.exports = ActionPolymer;