UNPKG

@astraicons/react

Version:

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

36 lines 1.26 kB
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", 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", { strokeLinecap: "round", d: "M3 18v-3.5A5.5 5.5 0 0 1 8.5 9H12M4.5 20.275q.236.249.5.468A5.48 5.48 0 0 0 8.5 22h7a5.5 5.5 0 0 0 5.5-5.5v-2A5.5 5.5 0 0 0 15.5 9H15M16.5 9V8" }), /*#__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" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M19 2 2 19" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M7.5 9V5.375A3.375 3.375 0 0 1 10.875 2h2.302a3.324 3.324 0 0 1 3.22 2.5" })); } const ForwardRef = React.forwardRef(LockSlashIcon); export default ForwardRef;