UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 939 B
import React, { forwardRef, memo } from "react"; import { AccessibleIcon } from "../accessible-icon"; import { StyledSvg, StyledPath } from "../styles"; import { jsx as _jsx } from "react/jsx-runtime"; const StyledMenu = ({ label, color = "#000000", className = "", css = {}, viewBox = "0 0 24 24" }, ref) => { return /*#__PURE__*/_jsx(AccessibleIcon, { label: label, children: /*#__PURE__*/_jsx(StyledSvg, { className: className, css: css, viewBox: viewBox, xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ref: ref, children: /*#__PURE__*/_jsx(StyledPath, { css: { fill: `${color}` }, d: "M0 0H24V2.625H0V0ZM8 9.1875H24V11.8125H8V9.1875ZM0 18.375H24V21H0V18.375Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledMenu); const Menu = /*#__PURE__*/memo(ForwardRef); export default Menu;