@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.63 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",
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: "M21.512 5.813c-.375-.036-.748.155-.989.396l-3.712 3.713a7.05 7.05 0 0 0-.89 1.121.75.75 0 0 0-.001.002l-.809 1.31a.75.75 0 0 0 1.033 1.034l1.311-.809-.053.03c.504-.257.894-.638 1.176-.92l3.713-3.713c.24-.241.432-.614.396-.989-.035-.374-.236-.619-.396-.779-.16-.16-.405-.36-.78-.396ZM5.25 7c-1.648 0-3 1.352-3 3v4c0 1.648 1.352 3 3 3h13.5c1.648 0 3-1.352 3-3v-3.361l-2.111 2.111c-.28.279-.75.756-1.448 1.135l-1.253.777-.004.002c-.91.564-2.125.332-2.778-.32-.652-.653-.884-1.868-.32-2.778l.002-.002v-.002l.584-.943.226-.367s.677-.965 1.102-1.39L17.611 7ZM6 9.75a.75.75 0 0 1 .75.75v.2l.174-.1a.75.75 0 1 1 .75 1.3l-.172.1.172.1a.75.75 0 1 1-.75 1.3l-.174-.1v.2a.75.75 0 0 1-1.5 0v-.2l-.174.1a.75.75 0 1 1-.75-1.3l.172-.1-.172-.1a.75.75 0 1 1 .75-1.3l.174.1v-.2A.75.75 0 0 1 6 9.75Zm5 0a.75.75 0 0 1 .75.75v.2l.174-.1a.75.75 0 1 1 .75 1.3l-.172.1.172.1a.75.75 0 1 1-.75 1.3l-.174-.1v.2a.75.75 0 1 1-1.5 0v-.2l-.174.1a.75.75 0 1 1-.75-1.3l.172-.1-.172-.1a.75.75 0 1 1 .75-1.3l.174.1v-.2a.75.75 0 0 1 .75-.75z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(PasswordPencilIcon);
module.exports = ForwardRef;