Skip to content
Snippets Groups Projects
Arrow.tsx 231 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgArrow(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M290 35L181 158l393 345-393 339 109 123 533-462z" />
        </svg>
      );
    }
    
    export default SvgArrow;