@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.11 kB
JavaScript
const React = require("react");
function PinSlashIcon({
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: "M2.22 2.22a.75.75 0 0 1 1.058 0l14.484 14.483a.75.75 0 1 1-1.06 1.059L2.22 3.278a.75.75 0 0 1 0-1.059zm11-.22a.75.75 0 0 0-.529.219l-1.61 1.611a.75.75 0 0 0 0 1.06l.274.278L9.85 6.674l3.476 3.476 1.508-1.505.275.275a.75.75 0 0 0 1.06 0l1.612-1.611a.75.75 0 0 0 0-1.061l-4.029-4.03A.75.75 0 0 0 13.221 2ZM4.765 7.94c-.338.2-.651.443-.932.724a.75.75 0 0 0 0 1.06l2.691 2.69-4.302 4.303a.75.75 0 0 0 0 1.062.75.75 0 0 0 1.062 0l4.301-4.302 2.691 2.691a.75.75 0 0 0 1.06 0c.282-.28.523-.595.724-.932z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(PinSlashIcon);
module.exports = ForwardRef;