
      import React, { Component } from 'react';

      export default class XamlIcon 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-xaml-icon ${this.props.className}`}><path d="M18.928 12l-3.464 6H8.536l-3.464-6 3.464-6h6.928l3.464 6zm4.845 0l-4.041 7L18 18l3.464-6L18 6l1.732-1 4.041 7zM.227 12l4.04-7L6 6l-3.464 6L6 18l-1.732 1-4.041-7z"/></svg>
          )
        }
      }