@astraicons/react
Version: 
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
31 lines • 1.06 kB
JavaScript
const React = require("react");
function LockIcon({
  title,
  titleId,
  ...props
}, svgRef) {
  return /*#__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: svgRef,
    "aria-labelledby": titleId
  }, props), title ? /*#__PURE__*/React.createElement("title", {
    id: titleId
  }, title) : null, /*#__PURE__*/React.createElement("path", {
    d: "M3 14.5A5.5 5.5 0 0 1 8.5 9h7a5.5 5.5 0 0 1 5.5 5.5v2a5.5 5.5 0 0 1-5.5 5.5h-7A5.5 5.5 0 0 1 3 16.5z"
  }), /*#__PURE__*/React.createElement("path", {
    strokeLinecap: "round",
    d: "M7.5 9V5.375A3.375 3.375 0 0 1 10.875 2v0h2.302A3.323 3.323 0 0 1 16.5 5.323V9"
  }), /*#__PURE__*/React.createElement("path", {
    strokeLinecap: "round",
    strokeLinejoin: "round",
    strokeMiterlimit: 10,
    d: "M12 15a1 1 0 1 0 0-2 1 1 0 0 0 0 2M12 15v2"
  }));
}
const ForwardRef = React.forwardRef(LockIcon);
module.exports = ForwardRef;