UNPKG

@nomercyicons/react

Version:
32 lines 1.13 kB
const React = require("react"); function QrCodeTwoToneIcon({ 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", { fill: "none", d: "M17 15h2v2h-2zM15 17h2v2h-2z" }), /*#__PURE__*/React.createElement("path", { d: "M5 15h4v4H5zM5 5h4v4H5zM15 5h4v4h-4z", opacity: 0.3 }), /*#__PURE__*/React.createElement("path", { d: "M3 11h8V3H3v8zm2-6h4v4H5V5zM3 21h8v-8H3v8zm2-6h4v4H5v-4zM13 3v8h8V3h-8zm6 6h-4V5h4v4zM19 19h2v2h-2zM13 13h2v2h-2zM15 15h2v2h-2zM13 17h2v2h-2zM15 19h2v2h-2zM17 17h2v2h-2zM17 13h2v2h-2zM19 15h2v2h-2z" })); } const ForwardRef = React.forwardRef(QrCodeTwoToneIcon); module.exports = ForwardRef;