Skip to content
Snippets Groups Projects
DropDown.tsx 218 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgDropDown(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M790 226L500 774 210 226h580z" />
        </svg>
      );
    }
    
    export default SvgDropDown;