@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 • 886 B
JavaScript
const React = require("react");
function LockSemiOpenIcon({
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: "M12 .25C9.11.25 6.75 2.61 6.75 5.5V7a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75V5.5c0-2.08 1.67-3.75 3.75-3.75s3.75 1.67 3.75 3.75v4.25h-9c-1.648 0-3 1.352-3 3v6.75c0 1.648 1.352 3 3 3h10.5c1.648 0 3-1.352 3-3v-6.75c0-1.648-1.352-3-3-3V5.5c0-2.89-2.36-5.25-5.25-5.25z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(LockSemiOpenIcon);
module.exports = ForwardRef;