@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-
26 lines • 1.55 kB
JavaScript
const React = require("react");
function HeadphonesSlashIcon({
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: "M17.852 14.672c.321-1.436.114-2.566-.582-3.313a3.151 3.151 0 0 0-.159-.158 7.302 7.302 0 0 0-2.744-7.775A7.382 7.382 0 0 0 10 2c-1.31 0-2.619.347-3.781 1.04l1.101 1.1a5.894 5.894 0 0 1 6.16.495 5.791 5.791 0 0 1 2.28 5.765c-.44-.168-.91-.294-1.393-.423a.75.75 0 0 0-.234-.026.75.75 0 0 0-.606.397l4.325 4.324zM12.154 15.334l-.363 1.352a.75.75 0 0 0 .531.918c.855.228 1.676.444 2.487.384l-2.655-2.654zM3.242 6.422a7.285 7.285 0 0 0-.353 4.78 3.15 3.15 0 0 0-.159.157c-.745.799-.931 2.038-.507 3.62.423 1.58 1.205 2.56 2.25 2.878 1.044.32 2.097.043 3.205-.253a.75.75 0 0 0 .531-.918l-.828-3.09-.828-3.09a.75.75 0 0 0-.686-.555.75.75 0 0 0-.234.026c-.482.129-.953.255-1.393.423a5.767 5.767 0 0 1 .164-2.816L3.242 6.422z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M2.21 2.21a.75.75 0 0 1 1.06 0l14.5 14.5a.75.75 0 1 1-1.06 1.06L2.21 3.27a.75.75 0 0 1 0-1.06z",
clipRule: "evenodd"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(HeadphonesSlashIcon);
module.exports = ForwardRef;