
      import React, { Component } from 'react';

      export default class CodeStringIcon 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-code-string-icon ${this.props.className}`}><path d="M3 5a2 2 0 0 1 2-2h14c1.104 0 2 .896 2 2v14c0 1.104-.896 2-2 2H5a2 2 0 0 1-2-2V5zm9.5 6h-1a1.5 1.5 0 0 1 0-3h1A1.5 1.5 0 0 1 14 9.5h2A3.5 3.5 0 0 0 12.5 6h-1a3.5 3.5 0 0 0 0 7h1a1.5 1.5 0 1 1 0 3h-1a1.5 1.5 0 0 1-1.5-1.5H8a3.5 3.5 0 0 0 3.5 3.5h1a3.5 3.5 0 1 0 0-7z"/></svg>
          )
        }
      }