
      import React, { Component } from 'react';

      export default class RssBoxIcon 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-rss-box-icon ${this.props.className}`}><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm2.5 12a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM6 10v2a6 6 0 0 1 6 6h2a8 8 0 0 0-8-8zm0-4v2c5.523 0 10 4.477 10 10h2c0-6.627-5.373-12-12-12z"/></svg>
          )
        }
      }