@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.07 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 16 16",
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: "M3.23 4.5C2.014 4.5 1 5.489 1 6.705v2.59C1 10.51 2.014 11.5 3.23 11.5h9.54c1.216 0 2.23-.989 2.23-2.205v-2.59C15 5.49 13.986 4.5 12.77 4.5H3.23zm1.02 2.25A1.25 1.25 0 0 1 5.5 8a1.25 1.25 0 0 1-1.25 1.25A1.25 1.25 0 0 1 3 8a1.25 1.25 0 0 1 1.25-1.25zm3.75 0A1.25 1.25 0 0 1 9.25 8 1.25 1.25 0 0 1 8 9.25 1.25 1.25 0 0 1 6.75 8 1.25 1.25 0 0 1 8 6.75zm3.75 0A1.25 1.25 0 0 1 13 8a1.25 1.25 0 0 1-1.25 1.25A1.25 1.25 0 0 1 10.5 8a1.25 1.25 0 0 1 1.25-1.25z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(PasswordIcon);
module.exports = ForwardRef;