@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 • 1.08 kB
JavaScript
const React = require("react");
function PasswordPencilIcon({
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: "m9.701 12.75 2.598-1.5m0 1.5-2.598-1.5M11 10.5v3m-6.049-.75 2.598-1.5m0 1.5-2.598-1.5m1.299-.75v3m8.25-5.75H4.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-1.5m-1.932-6.189a1.49 1.49 0 0 1 2.106.015 1.49 1.49 0 0 1 .015 2.107l-3.809 3.809a3.513 3.513 0 0 1-1.501.888l-2.129.62.62-2.128c.167-.569.472-1.085.889-1.502z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(PasswordPencilIcon);
module.exports = ForwardRef;