@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.11 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 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
fill: "none",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M21 21 3 3m13.03 13.03.86-3.208c2.55.684 4.29 1.378 3.376 4.787-.217.81-.487 1.413-.807 1.852m-.14-5.727a7.75 7.702 0 0 0-2.72-8.732 7.75 7.702 0 0 0-9.198 0 7.75 7.702 0 0 0-1.253 1.15m.962 6.67c-2.55.684-4.29 1.378-3.376 4.787.913 3.41 2.766 3.141 5.317 2.458l-.97-3.622-.971-3.623v0m-2.433-4.14a7.75 7.702 0 0 0 .004 5.052m11.721 6.668c-.455-.077-.94-.198-1.453-.335l.236-.881"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(HeadphonesSlashIcon);
module.exports = ForwardRef;