@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.53 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 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M13.335 1.759c-2.558 0-4.648 2.05-4.786 4.632h2.656c.44 0 .798.366.798.818a.81.81 0 0 1-.799.817H8.543v2.997c0 1.069-.042.977.208 1.57L12.153 9l3.177-3.354c-.449 0-.664-.166-.664-.617 0-.452.358-.818.799-.818h1.224l.216-.228.118-.124.125-.133c-.672-1.451-2.04-1.967-3.813-1.967M18.128 6.898l-7.643 8.069a4.7 4.7 0 0 0 2.85.96c2.647 0 4.793-2.195 4.793-4.904z"
}), /*#__PURE__*/React.createElement("path", {
d: "M20.59 2.275a.75.75 0 1 0-1.09-1.032L7.72 13.68a6.75 6.75 0 0 1-.616-2.832v-.052c0-.42-.322-.76-.72-.76-.396 0-.718.34-.718.76v.052c0 1.439.36 2.789.99 3.955l-3.452 3.645a.75.75 0 0 0 1.09 1.032zM12.614 18.814a7.32 7.32 0 0 1-4.125-1.74l1.024-1.081a5.9 5.9 0 0 0 3.723 1.33h.14400000000000002c3.414 0 6.182-2.923 6.182-6.527v-.086c0-.42.322-.76.72-.76.396 0 .718.34.718.76v.086c0 4.204-3.054 7.654-6.948 8.014v1.671h2.855c.397 0 .719.34.719.76 0 .418-.322.758-.72.758H9.76c-.397 0-.719-.34-.719-.759s.322-.759.719-.759h2.854z"
}));
}
const ForwardRef = React.forwardRef(MicrophoneSlashIcon);
module.exports = ForwardRef;