UNPKG

@astraicons/react

Version:

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

22 lines 915 B
import * as React from "react"; import { forwardRef } from "react"; const LockIcon = ({ 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: "M21.75 14.625a6.376 6.376 0 0 0-5-6.225V5.85a3.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 15zm-6.5-8.776c0-1.16-.94-2.099-2.099-2.099H11A2.25 2.25 0 0 0 8.75 6v2.25h6.5zm-4 8.146v2.5a.75.75 0 0 0 1.5 0v-2.5a.75.75 0 0 0-1.5 0", clipRule: "evenodd" })); const ForwardRef = forwardRef(LockIcon); export default ForwardRef;