
      import React, { Component } from 'react';

      export default class FunctionIcon extends Component {
        static defaultProps = {
          className: ''
        };

        constructor(props) {
          super(props);
        }

        render() {
          return (
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-function-icon ${this.props.className}`}><path d="M15.599 5.288a2 2 0 0 0-2.167 1.818L13.179 10H16v2h-2.996l-.444 5.068a4 4 0 0 1-7.385 1.757L6.67 17.33a2 2 0 0 0 3.898-.436L10.996 12H8v-2h3.171l.269-3.068a4 4 0 0 1 7.385-1.757L17.33 6.67a2 2 0 0 0-1.731-1.382z"/></svg>
          )
        }
      }