@metamask/design-system-react
Version:
Design system react ui components
7 lines • 494 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgCustomize = (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: "M11 21v-6h2v2h8v2h-8v2zm-8-2v-2h6v2zm4-4v-2H3v-2h4V9h2v6zm4-2v-2h10v2zm4-4V3h2v2h4v2h-4v2zM3 7V5h10v2z" }));
const ForwardRef = forwardRef(SvgCustomize);
export default ForwardRef;
//# sourceMappingURL=Customize.mjs.map