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;