Newer
Older
import { h } from "@stencil/core";
function SvgArrowUp(props) {
return (
<svg viewBox="0 0 1000 1000" {...props}>
<path d="M468 32L48 506l-19 23 23 23 77 64 19 23 26-26 239-268v645h161V342l236 271 22 22 123-106-20-26L516 32 497 6z" />
</svg>
);
}
export default SvgArrowUp;