
      import React, { Component } from 'react';

      export default class AtIcon 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-at-icon ${this.props.className}`}><path d="M17.423 15c.37-.91.577-1.926.577-3 0-3.866-2.686-7-6-7s-6 3.134-6 7 2.686 7 6 7c1.537 0 3 0 4-.782v2.328C15 21 13.457 21 12 21c-4.418 0-8-4.03-8-9s3.582-9 8-9 8 4.03 8 9c0 1.85-.496 3.57-1.347 5H14v-1.5c-.635.925-1.52 1.5-2.5 1.5C9.567 17 8 14.761 8 12s1.567-5 3.5-5c.98 0 1.865.575 2.5 1.5V8h2v7h1.423zM12 9c-1.105 0-2 1.343-2 3s.895 3 2 3 2-1.343 2-3-.895-3-2-3z"/></svg>
          )
        }
      }