@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.29 kB
JavaScript
import * as React from "react";
function LockSlashIcon({
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: "M11.215 9.504 8.5 9.487a5.5 5.5 0 0 0-5.5 5.5V16.5c0 .723 0 .5.12 1.098z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M4.17 19.891a5.49 5.49 0 0 0 4.33 2.11h7a5.5 5.5 0 0 0 5.5-5.5v-1.514a5.5 5.5 0 0 0-5.5-5.5h-.926zm8.525-5.172a1 1 0 1 0-1.39 0 .8.8 0 0 0-.055.281v2a.75.75 0 0 0 1.5 0v-2q-.001-.15-.055-.281",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M19.562 3.279a.75.75 0 0 0-1.06-1.061l-2.098 2.097a3.93 3.93 0 0 0-3.587-2.317h-2.205A3.983 3.983 0 0 0 6.63 5.981v3.832c.218-.074.288-.095.681-.197C8 9.5 8 9.499 8.13 9.499V5.981a2.483 2.483 0 0 1 2.482-2.483h2.205c1.199 0 2.195.867 2.396 2.008L2.218 18.499a.75.75 0 1 0 1.061 1.06z"
}));
}
const ForwardRef = React.forwardRef(LockSlashIcon);
export default ForwardRef;