
      import React, { Component } from 'react';

      export default class ClockEndIcon 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-clock-end-icon ${this.props.className}`}><path d="M12.002 1A7.001 7.001 0 0 0 5 7.998 7.002 7.002 0 0 0 12.002 15a7 7 0 0 0 0-14zm-.005 2.154a4.849 4.849 0 1 1 0 9.698 4.849 4.849 0 0 1 0-9.698zM11.002 5v3.691l3.189 1.836.746-1.298L12.5 7.823V5M15 16.001V19H2.998V21H15V24L18.999 20m0 0v3.999H21V16H19"/></svg>
          )
        }
      }