@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.02 kB
JavaScript
import * as React from "react";
function ScanIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M22 9V6.667v0A4.667 4.667 0 0 0 17.333 2H14M22 14v3.355A4.645 4.645 0 0 1 17.355 22H14M2 9V6.667v0A4.667 4.667 0 0 1 6.667 2v0H9M2 14v3.355A4.645 4.645 0 0 0 6.645 22H10"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M22 12H2m5 2.5A2.5 2.5 0 0 0 9.5 17h5a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 14.5 7h-5A2.5 2.5 0 0 0 7 9.5z",
opacity: 0.4
}));
}
const ForwardRef = React.forwardRef(ScanIcon);
export default ForwardRef;