@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.12 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const LockSlashIcon = ({
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", {
d: "M20.22 14.994v-.375a4.88 4.88 0 0 0-3.878-4.772.75.75 0 0 1 .305-1.469 6.38 6.38 0 0 1 5.072 6.241v.375a6.75 6.75 0 0 1-6.75 6.75h-6a6.7 6.7 0 0 1-3.636-1.062.75.75 0 1 1 .808-1.263 5.2 5.2 0 0 0 2.828.825h6c2.9 0 5.25-2.35 5.25-5.25"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.4 16.495v-2.5a.75.75 0 0 1 1.5 0v2.5a.75.75 0 1 1-1.5 0M18.47 1.47a.75.75 0 1 1 1.06 1.06l-17 17a.75.75 0 1 1-1.06-1.06l1.18-1.18A6.7 6.7 0 0 1 2.248 15v-.375a6.38 6.38 0 0 1 5-6.225V5.893C7.25 3.848 8.98 2.25 11.035 2.25h2.07c1.254 0 2.375.598 3.056 1.529z"
}));
const ForwardRef = forwardRef(LockSlashIcon);
module.exports = ForwardRef;