@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.02 kB
JavaScript
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 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: "M4.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.53V8.47A2.48 2.48 0 0 0 15.533 6H4.467zM5.5 8.5A1.5 1.5 0 0 1 7 10a1.5 1.5 0 0 1-1.5 1.5A1.5 1.5 0 0 1 4 10a1.5 1.5 0 0 1 1.5-1.5zm4.5 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5A1.5 1.5 0 0 1 8.5 10 1.5 1.5 0 0 1 10 8.5zm4.5 0A1.5 1.5 0 0 1 16 10a1.5 1.5 0 0 1-1.5 1.5A1.5 1.5 0 0 1 13 10a1.5 1.5 0 0 1 1.5-1.5z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(PasswordIcon);
module.exports = ForwardRef;