UNPKG

@astraicons/react

Version:

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

27 lines 890 B
import * as React from "react"; import { forwardRef } from "react"; const UnlockIcon = ({ 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: "M3 14.625A5.625 5.625 0 0 1 8.625 9h6.75A5.625 5.625 0 0 1 21 14.625V15a6 6 0 0 1-6 6H9a6 6 0 0 1-6-6zM8 9V6a3 3 0 0 1 3-3h2.152A2.85 2.85 0 0 1 16 5.848" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M12 16.495v-2.5", opacity: 0.5 })); const ForwardRef = forwardRef(UnlockIcon); export default ForwardRef;