@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.06 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 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: "M3.511 2.451a.75.75 0 0 0-1.06 1.06l18 18a.75.75 0 1 0 1.06-1.06zm12.294-.176a.75.75 0 0 0-.336.196l-2 2a.75.75 0 0 0 0 1.062l.469.469-2.38 2.377 4.063 4.062 2.377-2.379.469.47a.75.75 0 0 0 1.062 0l2-2a.75.75 0 0 0 0-1.061l-4.998-5a.75.75 0 0 0-.726-.196ZM6.139 9.318a5.662 5.662 0 0 0-1.668 1.15.75.75 0 0 0 0 1.063L7.937 15l-5.466 5.467a.75.75 0 0 0 0 1.062.75.75 0 0 0 1.062 0L9 16.063l3.469 3.466a.75.75 0 0 0 1.062 0 5.662 5.662 0 0 0 1.15-1.668z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(PinSlashIcon);
module.exports = ForwardRef;