sebikostudio-icons
Version:
A collection of icon components
55 lines • 1.9 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const QRCodeIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "qrcode, scanning, scanner, boxes, qr",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M1.5 6.5V1.5H6.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M18.5 6.5V1.5H13.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M1.5 13.5V18.5H6.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M18.5 13.5V18.5H13.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M4.5 4.5H8.5V8.5H4.5V4.5Z",
stroke: "currentColor",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M4.5 11.5H8.5V15.5H4.5V11.5Z",
stroke: "currentColor",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.5 4.5H15.5V8.5H11.5V4.5Z",
stroke: "currentColor",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.5 11.5H15.5V15.5H11.5V11.5Z",
stroke: "currentColor",
strokeLinejoin: "round"
})));
export default QRCodeIcon;