import * as React from 'react';

const DefaultStyles = {
  width: '1em',
  height: '1em',
  verticalAlign: 'middle',
  fill: 'currentColor',
  overflow: 'hidden'
};

export default function NoMapping(props = {}) {
  const styles = Object.assign({}, DefaultStyles, props.style);

  return (
    <svg {...props} style={styles} viewBox="0 0 1920 1024"><defs></defs><path d="M1524.416 129.536l-7.808-1.344h-6.528l-5.76 0.64-9.088 3.008-5.888 3.2-5.696 4.48-5.504 6.528-3.52 6.272-1.6 4.288-1.536 9.728L1470.592 384H954.88l-93.184 256h608.832v216.704c0 21.76 18.688 39.296 42.048 39.296a43.456 43.456 0 0 0 24.64-7.296l5.184-4.224 365.376-344.64a37.76 37.76 0 0 0 4.416-50.688l-5.376-5.76-367.36-346.24-8.64-5.248-6.464-2.368zM546.304 384H19.2a19.2 19.2 0 0 0-18.688 14.784L0 403.2v217.6a19.2 19.2 0 0 0 14.784 18.688L19.2 640h433.92l93.184-256z"></path><path d="M895.473873 173.046937m-18.042098-6.566787l-84.196459-30.645005q-18.042098-6.566787-24.608885 11.475312l-249.537896 685.599736q-6.566787 18.042098 11.475311 24.608885l84.196459 30.645005q18.042098 6.566787 24.608885-11.475312l249.537897-685.599736q6.566787-18.042098-11.475312-24.608885Z"></path></svg>
  );
}