UNPKG

@astraicons/react

Version:

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

23 lines 857 B
import * as React from "react"; import { forwardRef } from "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: "M9.333 16.243V10.34a2.667 2.667 0 1 1 5.334 0v4.236a1.667 1.667 0 1 0 3.333 0V10a6 6 0 0 0-12 0v5.608A5.94 5.94 0 0 0 7.541 19.6M5.02 21.43c-1.157-.542-2.495-2.237-2.166-4.75M18.5 3c1.077.478 2.755 2.176 2.5 4.5M12 15.8v-5" })); const ForwardRef = forwardRef(FingerprintIcon); export default ForwardRef;