UNPKG

@metamask/design-system-react

Version:
10 lines 808 B
import * as React from "react"; import { forwardRef } from "react"; const SvgForest = (props, ref) => React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", ref: ref, ...props }, React.createElement("clipPath", { id: "a" }, React.createElement("path", { d: "M0 0h24v24H0z" })), React.createElement("g", { clipPath: "url(#a)" }, React.createElement("path", { d: "M7 22v-4H0l3.85-6H2L9 2l3 4.3L15 2l7 10h-1.85L24 18h-7v4h-4v-4h-2v4zm9.725-6h3.625l-3.875-6h1.675L15 5.5l-1.775 2.525L16 12h-1.85zM3.65 16h10.7l-3.875-6h1.675L9 5.5 5.85 10h1.675zm0 0h3.875H5.85h6.3-1.675 3.875zm13.075 0H14.15 16h-2.775 4.925-1.675 3.875z" }))); const ForwardRef = forwardRef(SvgForest); export default ForwardRef; //# sourceMappingURL=Forest.mjs.map