UNPKG

@nomercyicons/react

Version:
33 lines 1.12 kB
const React = require("react"); function MarginTwoToneIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "none", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fill: "none", d: "M0 0h24v24H0z" }), /*#__PURE__*/React.createElement("path", { d: "M5 19h14V5H5v14zM15 7h2v2h-2V7zm0 4h2v2h-2v-2zm-4-4h2v2h-2V7zm0 4h2v2h-2v-2zM7 7h2v2H7V7zm0 4h2v2H7v-2z", opacity: 0.3 }), /*#__PURE__*/React.createElement("path", { d: "M7 7h2v2H7zM7 11h2v2H7z" }), /*#__PURE__*/React.createElement("path", { d: "M3 3v18h18V3H3zm16 16H5V5h14v14z" }), /*#__PURE__*/React.createElement("path", { d: "M11 7h2v2h-2zM15 11h2v2h-2zM11 11h2v2h-2zM15 7h2v2h-2z" })); } const ForwardRef = React.forwardRef(MarginTwoToneIcon); module.exports = ForwardRef;