Skip to content
Snippets Groups Projects
LinkArrowOffsite.tsx 316 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgLinkArrowOffsite(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M881 77l-633 36-32 3 3 32 7 100v33l32-4 358-19-455 455 113 113 458-458-22 361v32h32l97 7 32 3 3-32 39-626 3-39z" />
        </svg>
      );
    }
    
    export default SvgLinkArrowOffsite;