@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
17 lines (15 loc) • 992 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Menu = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 30 28",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "currentColor"
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 2.33333C0 1.0449 0.959598 0 2.14286 0H27.8571C29.0424 0 30 1.0449 30 2.33333C30 3.62396 29.0424 4.66667 27.8571 4.66667H2.14286C0.959598 4.66667 0 3.62396 0 2.33333ZM0 14C0 12.7094 0.959598 11.6667 2.14286 11.6667H27.8571C29.0424 11.6667 30 12.7094 30 14C30 15.2906 29.0424 16.3333 27.8571 16.3333H2.14286C0.959598 16.3333 0 15.2906 0 14ZM27.8571 28H2.14286C0.959598 28 0 26.9573 0 25.6667C0 24.376 0.959598 23.3333 2.14286 23.3333H27.8571C29.0424 23.3333 30 24.376 30 25.6667C30 26.9573 29.0424 28 27.8571 28Z"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(Menu);
export default ForwardRef;