UNPKG

@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 859 B
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 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: "M10 0C7.522 0 5.5 2.035 5.5 4.52V6a.75.75 0 0 0 .75.75A.75.75 0 0 0 7 6V4.52a2.999 2.999 0 0 1 3-3.02c1.664 0 3 1.341 3 3.02v4.476H5.5V9H5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2h-.5V4.52C14.5 2.035 12.478 0 10 0z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(LockSemiOpenIcon); module.exports = ForwardRef;