
      import React, { Component } from 'react';

      export default class ThumbDownIcon 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-thumb-down-icon ${this.props.className}`}><path d="M19 14.998h4v-12h-4m-4 0H6a2 2 0 0 0-1.843 1.22L1.14 11.271c-.088.225-.14.47-.14.727v2a2 2 0 0 0 2 2h6.314l-.954 4.569a1.491 1.491 0 0 0 .407 1.376l1.06 1.055 6.586-6.586c.362-.362.586-.862.586-1.414v-10a2 2 0 0 0-2-2z"/></svg>
          )
        }
      }