UNPKG

@astraicons/react

Version:

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

26 lines 961 B
const React = require("react"); const { forwardRef } = require("react"); const ScanIcon = ({ title, titleId, ...props }, ref) => /*#__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: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M21 9V7a4 4 0 0 0-4-4h-3M21 14v2.936A4.064 4.064 0 0 1 16.936 21H14M3 9V7a4 4 0 0 1 4-4h2M3 14v2.936A4.064 4.064 0 0 0 7.065 21H10M17 12v2.5a2.5 2.5 0 0 1-2.5 2.5h-5A2.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 7h5A2.5 2.5 0 0 1 17 9.5V12M21 12H3" })); const ForwardRef = forwardRef(ScanIcon); module.exports = ForwardRef;