UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

27 lines 1.02 kB
const React = require("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 22H10M17 12v2.5a2.5 2.5 0 0 1-2.5 2.5v0h-5v0A2.5 2.5 0 0 1 7 14.5V12" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M7 12V9.5A2.5 2.5 0 0 1 9.5 7v0h5v0A2.5 2.5 0 0 1 17 9.5V12M22 12H2" })); } const ForwardRef = React.forwardRef(ScanIcon); module.exports = ForwardRef;