Newer
Older
import { h } from "@stencil/core";
function SvgHome(props) {
return (
<svg viewBox="0 0 1000 1000" {...props}>
<path d="M500 161L97 516h97v323h193V613h226v226h193V516h97z" />
</svg>
);
}
export default SvgHome;