
      import React, { Component } from 'react';

      export default class RaspberrypiIcon 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-raspberrypi-icon ${this.props.className}`}><path d="M20 8h2v2h-2V8zM4 5h16a2 2 0 0 1 2 2h-3v2H5v4h3v3h11v1h3a2 2 0 0 1-2 2h-4v1h-2v-1h-3v1H7v-1H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2zm15 10H9v-5h10v1h3v2h-3v2zm-6-3v2h2v-2h-2zM5 6v2h1V6H5zm2 0v2h1V6H7zm2 0v2h1V6H9zm2 0v2h1V6h-1zm2 0v2h1V6h-1zm2 0v2h1V6h-1zm5 8h2v2h-2v-2z"/></svg>
          )
        }
      }