Skip to content
Snippets Groups Projects
LinkArrow.tsx 286 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgLinkArrow(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M958 477L484 58l-23-23-87 100-22 23 293 261H0v162h648L377 819l-22 20 19 26 68 74 19 26 523-462z" />
        </svg>
      );
    }
    
    export default SvgLinkArrow;