@metamask/design-system-react
Version:
Design system react ui components
7 lines • 446 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgHome = (props, ref) => React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", ref: ref, ...props },
React.createElement("path", { d: "M6 18.886h3v-6h6v6h3v-9l-6-4.5-6 4.5zm-2 2v-12l8-6 8 6v12h-7v-6h-2v6z" }));
const ForwardRef = forwardRef(SvgHome);
export default ForwardRef;
//# sourceMappingURL=Home.mjs.map