@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 MicrophoneSlashIcon({
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: "M3.262 6.441A.75.75 0 0 0 3 7a5.001 5.001 0 0 0 4.25 4.943V13.5h-1.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 .732-.838l-.644-.644a.75.75 0 0 0-.088-.018h-1.5v-1.557a5.001 5.001 0 0 0 .012-.002l-1.535-1.535a3.5 3.5 0 0 1-2.633-2.633ZM12.25 6.25a.75.75 0 0 0-.75.75 3.5 3.5 0 0 1-.2 1.121l1.151 1.15C12.811 8.568 13 7.79 13 7a.75.75 0 0 0-.75-.75ZM8 1a2 2 0 0 0-1.979 1.842L10 6.82V3a2 2 0 0 0-2-2ZM2.21 2.21a.75.75 0 0 1 1.06 0l10.5 10.5a.75.75 0 1 1-1.06 1.06L2.21 3.27a.75.75 0 0 1 0-1.06z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(MicrophoneSlashIcon);
module.exports = ForwardRef;