UNPKG

@metamask/design-system-react

Version:
7 lines 416 B
import * as React from "react"; import { forwardRef } from "react"; const SvgMenu = (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: "M3 18v-2h18v2zm0-5v-2h18v2zm0-5V6h18v2z" })); const ForwardRef = forwardRef(SvgMenu); export default ForwardRef; //# sourceMappingURL=Menu.mjs.map