
      import React, { Component } from 'react';

      export default class DolbyIcon 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-dolby-icon ${this.props.className}`}><path d="M2 5v14h20V5H2zm4 12.003H4V6.997h2c2.86.097 5.096 2.334 5 5.003.096 2.669-2.14 4.906-5 5.003zm14 0h-2c-2.86-.097-5.096-2.334-5-5.003-.096-2.669 2.14-4.906 5-5.003h2v10.006z"/></svg>
          )
        }
      }