
      import React, { Component } from 'react';

      export default class MultiplicationIcon 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-multiplication-icon ${this.props.className}`}><path d="M11 3h2l-.008 7.269 6.297-3.627 1 1.732L14 11.997l6.299 3.645-1 1.732-6.31-3.652L12.98 21h-2l.008-7.269-6.297 3.627-1-1.732L10 11.993 3.72 8.357l1-1.732 6.272 3.63L11 3z"/></svg>
          )
        }
      }