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 850 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 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: "M8 0C6.083 0 4.5 1.583 4.5 3.5v1a.75.75 0 0 0 .75.75A.75.75 0 0 0 6 4.5v-1c0-1.083.917-2 2-2s2 .917 2 2V7H4.5A1.5 1.5 0 0 0 3 8.5v5A1.5 1.5 0 0 0 4.5 15h7a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 11.5 7V3.5C11.5 1.583 9.917 0 8 0z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(LockSemiOpenIcon); module.exports = ForwardRef;