UNPKG

@astraicons/react

Version:

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

27 lines 962 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 21H10" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M21 12H3m4 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 = forwardRef(ScanIcon); module.exports = ForwardRef;