
      import React, { Component } from 'react';

      export default class FastForwardOutlineIcon 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-fast-forward-outline-icon ${this.props.className}`}><path d="M15 9.9l3 2.1-3 2.1V9.9m-9 0L9 12l-3 2.1V9.9M13 6v12l8.5-6L13 6zM4 6v12l8.5-6L4 6z"/></svg>
          )
        }
      }