UNPKG

@astraicons/react

Version:

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

25 lines 1.17 kB
import * as React from "react"; function UnlockIcon({ 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: "M13.301 3.499a2.45 2.45 0 0 1 2.449 2.449.75.75 0 0 0 1.5 0 3.95 3.95 0 0 0-3.949-3.949h-2.426A4.125 4.125 0 0 0 6.75 6.124v3.647c.25-.077.333-.1.75-.193.5-.078.597-.076.75-.085V6.124a2.625 2.625 0 0 1 2.625-2.625z" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M8.5 9.487a5.5 5.5 0 0 0-5.5 5.5V16.5A5.5 5.5 0 0 0 8.5 22h7a5.5 5.5 0 0 0 5.5-5.5v-1.513a5.5 5.5 0 0 0-5.5-5.5zM13 14.3c0 .27-.116.514-.302.688a.8.8 0 0 1 .052.274v1.925a.75.75 0 0 1-1.5 0v-1.925a.8.8 0 0 1 .052-.274A.94.94 0 0 1 11 14.3c0-.532.448-.963 1-.963s1 .431 1 .963", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(UnlockIcon); export default ForwardRef;