@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
33 lines • 1.22 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const MicrophoneSlashIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M12 21v-3M8.4 21h7.2M5 11.081v.05c0 .469.035.869.136 1.369s.581 1.552 1.28 2.632M19 11v.081A6.92 6.92 0 0 1 12.081 18h-.212c-1.4 0-2.703-.42-3.789-1.139"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M9.867 14.964A4.5 4.5 0 0 0 16.5 11V8.375"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M20.092 2 3 18.966"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M16 5.5c-1-2-2.44-2.5-4-2.5a4.5 4.5 0 0 0-4.5 4.5v4.085c0 .747.245 1.469.69 2.058M8 6h3.5M8 9h3.5"
}));
const ForwardRef = forwardRef(MicrophoneSlashIcon);
export default ForwardRef;