UNPKG

@sidekickicons/react

Version:

<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-

26 lines 975 B
const React = require("react"); function PasswordIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", "data-slot": "icon", fill: "none", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m16 12.75 2.598-1.5m0 1.5L16 11.25m1.299-.75v3m-11.848-.75 2.598-1.5m0 1.5-2.598-1.5m1.299-.75v3m3.951-.75 2.598-1.5m0 1.5-2.598-1.5M12 10.5v3M4.75 7.75A2.25 2.25 0 0 0 2.5 10v4a2.25 2.25 0 0 0 2.25 2.25h14.5A2.25 2.25 0 0 0 21.5 14v-4a2.25 2.25 0 0 0-2.25-2.25z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(PasswordIcon); module.exports = ForwardRef;