@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.32 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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M9.75 2A.75.75 0 0 0 9 1.25H6.667A5.417 5.417 0 0 0 1.25 6.667V9a.75.75 0 0 0 1.5 0V6.667A3.917 3.917 0 0 1 6.667 2.75H9A.75.75 0 0 0 9.75 2M14 1.25a.75.75 0 0 0 0 1.5h3.333a3.917 3.917 0 0 1 3.917 3.917V9a.75.75 0 0 0 1.5 0V6.667a5.417 5.417 0 0 0-5.417-5.417zM22.75 14a.75.75 0 0 0-1.5 0v3.355a3.895 3.895 0 0 1-3.895 3.895H14a.75.75 0 0 0 0 1.5h3.355a5.395 5.395 0 0 0 5.395-5.395zM10 22.75a.75.75 0 0 0 0-1.5H6.645a3.895 3.895 0 0 1-3.895-3.895V14a.75.75 0 0 0-1.5 0v3.355a5.395 5.395 0 0 0 5.395 5.395z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M7 15a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-2.25h5a.75.75 0 0 0 0-1.5h-5V9a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v2.25H2a.75.75 0 0 0 0 1.5h5zm0-2.25h10v-1.5H7z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(ScanIcon);
export default ForwardRef;