@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-
22 lines • 1.21 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 20 20",
fill: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M17.303 4.82c-.333.064-.62.23-.862.471l-2.796 2.797a3.187 3.187 0 0 0-.643.912l-.434.936a.75.75 0 0 0 .996.996l.936-.434c.337-.156.645-.375.912-.643L18.21 7.06c.241-.241.407-.53.47-.862.064-.332.007-.765-.302-1.074-.309-.309-.742-.366-1.074-.303ZM4.467 6A2.48 2.48 0 0 0 2 8.47v3.06A2.48 2.48 0 0 0 4.467 14h11.066A2.48 2.48 0 0 0 18 11.53V9.388l-1.527 1.527a4.689 4.689 0 0 1-1.344.943l-.934.434c-.882.41-1.933.152-2.537-.451-.603-.604-.86-1.655-.451-2.537l.434-.936a4.68 4.68 0 0 1 .943-1.342L13.611 6ZM5 8.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm4 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(PasswordPencilIcon);
module.exports = ForwardRef;