
      import React, { Component } from 'react';

      export default class PlaylistRemoveIcon 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-playlist-remove-icon ${this.props.className}`}><path d="M2 6v2h12V6H2zm0 4v2h8v-2H2zm12.172.758l-1.414 1.414L15.586 15l-2.828 2.828 1.414 1.414L17 16.414l2.828 2.828 1.414-1.414L18.414 15l2.828-2.828-1.414-1.414L17 13.586l-2.828-2.828zM2 14v2h8v-2H2z"/></svg>
          )
        }
      }