Skip to content
Snippets Groups Projects
CaretUp.tsx 235 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgCaretUp(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M497 177L35 710l123 109 339-393 345 393 123-109z" />
        </svg>
      );
    }
    
    export default SvgCaretUp;