
      import React, { Component } from 'react';

      export default class MetronomeTickIcon 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-metronome-tick-icon ${this.props.className}`}><path d="M12 1.75l-3.426.918-4.506 16.814A3.705 3.705 0 0 0 4 20c0 1.108.892 2 2 2h12c1.108 0 2-.892 2-2 0-.165-.065-.504-.068-.518L15.426 2.668 12 1.75zM10.287 4h3.426l3.482 13H13v-5h-2v5H6.805l3.482-13zM11 5v4h-1v2h4V9h-1V5h-2z"/></svg>
          )
        }
      }