UNPKG

@astraicons/react

Version:

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

22 lines 936 B
const React = require("react"); const { forwardRef } = require("react"); const UnlockIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M13.151 3.75c1.16 0 2.099.94 2.099 2.099a.75.75 0 0 0 1.5 0 3.6 3.6 0 0 0-3.599-3.599H11A3.75 3.75 0 0 0 7.25 6v2.4c-2.86.63-5 3.176-5 6.225V15A6.75 6.75 0 0 0 9 21.75h6A6.75 6.75 0 0 0 21.75 15v-.375a6.375 6.375 0 0 0-6.375-6.375H8.75V6A2.25 2.25 0 0 1 11 3.75zM11.25 13.995v2.5a.75.75 0 0 0 1.5 0v-2.5a.75.75 0 0 0-1.5 0", clipRule: "evenodd" })); const ForwardRef = forwardRef(UnlockIcon); module.exports = ForwardRef;