UNPKG

@magicbell/magicbell-react

Version:

React components for building a notification inbox for your app

18 lines 796 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = MenuIcon; const tslib_1 = require("tslib"); const react_1 = tslib_1.__importDefault(require("react")); /** * SVG with 3 vertical dots. * * @example * <MenuIcon /> */ function MenuIcon() { return (react_1.default.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, react_1.default.createElement("circle", { cx: "18", cy: "12", r: "1.5", fill: "currentColor" }), react_1.default.createElement("circle", { cx: "12", cy: "12", r: "1.5", fill: "currentColor" }), react_1.default.createElement("circle", { cx: "6", cy: "12", r: "1.5", fill: "currentColor" }))); } //# sourceMappingURL=MenuIcon.js.map