
      import React, { Component } from 'react';

      export default class DiceD4Icon 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-dice-d4-icon ${this.props.className}`}><path d="M13.428 15.145h.86v1.215h-.86V18h-1.505v-1.64H8.815l-.068-.948 3.161-4.995h1.52v4.728zm-3.181 0h1.676v-2.677l-1.676 2.677zM22 21H2a.998.998 0 0 1-.855-1.518l10-16.5c.363-.6 1.348-.6 1.71 0l10 16.5A1 1 0 0 1 22 21zM3.776 19h16.45L12 5.43 3.776 19z"/></svg>
          )
        }
      }