@heroicons/react
Version:
<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tailwindlabs/heroicons/HEAD/.github/logo-dark.svg"> <source media="(pref
40 lines • 1.9 kB
JavaScript
const React = require("react");
function QrCodeIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 16 16",
fill: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M4.75 4.25a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M2 3.5A1.5 1.5 0 0 1 3.5 2H6a1.5 1.5 0 0 1 1.5 1.5V6A1.5 1.5 0 0 1 6 7.5H3.5A1.5 1.5 0 0 1 2 6V3.5Zm1.5 0H6V6H3.5V3.5Z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M4.25 11.25a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M2 10a1.5 1.5 0 0 1 1.5-1.5H6A1.5 1.5 0 0 1 7.5 10v2.5A1.5 1.5 0 0 1 6 14H3.5A1.5 1.5 0 0 1 2 12.5V10Zm1.5 2.5V10H6v2.5H3.5Z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.25 4.25a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M10 2a1.5 1.5 0 0 0-1.5 1.5V6A1.5 1.5 0 0 0 10 7.5h2.5A1.5 1.5 0 0 0 14 6V3.5A1.5 1.5 0 0 0 12.5 2H10Zm2.5 1.5H10V6h2.5V3.5Z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.5 9.417a.917.917 0 1 1 1.833 0 .917.917 0 0 1-1.833 0ZM8.5 13.083a.917.917 0 1 1 1.833 0 .917.917 0 0 1-1.833 0ZM13.083 8.5a.917.917 0 1 0 0 1.833.917.917 0 0 0 0-1.833ZM12.166 13.084a.917.917 0 1 1 1.833 0 .917.917 0 0 1-1.833 0ZM11.25 10.333a.917.917 0 1 0 0 1.833.917.917 0 0 0 0-1.833Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(QrCodeIcon);
module.exports = ForwardRef;