UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

30 lines 1.14 kB
const React = require("react"); const { forwardRef } = require("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.2M19 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", d: "M20.092 2 3 18.966M16 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.5M5 10.995v.05c0 .468.035.868.136 1.368s.581 1.553 1.28 2.633", opacity: 0.4 })); const ForwardRef = forwardRef(MicrophoneSlashIcon); module.exports = ForwardRef;