Newer
Older
import { h } from "@stencil/core";
function SvgArrowDown(props) {
return (
<svg viewBox="0 0 1000 1000" {...props}>
<path d="M513 965l419-475 23-22-100-87-23-23-261 294V6H410v649L171 384l-19-23-26 20-74 67-26 20 461 522z" />
</svg>
);
}
export default SvgArrowDown;