let React = require('react');
let SvgIcon = require('../../svg-icon');

let ActionPolymer = React.createClass({

  render() {
    return (
      <SvgIcon {...this.props}>
        <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"/>
      </SvgIcon>
    );
  }

});

module.exports = ActionPolymer;