@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 981 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const FingerprintIcon = ({
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: "M7.541 19.6A5.94 5.94 0 0 1 6 15.608V10a6 6 0 1 1 12 0v.121"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M9.334 16.243V10.34a2.667 2.667 0 0 1 5.333 0v4.236a1.667 1.667 0 0 0 3.334 0v-4.455M5.017 21.43c-1.156-.542-2.494-2.237-2.165-4.75M19.043 3c1.077.478 2.345 2.016 2.09 4.34M12 15.8v-5",
opacity: 0.4
}));
const ForwardRef = forwardRef(FingerprintIcon);
module.exports = ForwardRef;