UNPKG

@astraicons/react

Version:

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

31 lines 1.08 kB
const React = require("react"); function MicrophoneSlashIcon({ title, titleId, ...props }, svgRef) { return /*#__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: svgRef, "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.2M8 8h2M5 11.081v.05q.001.704.136 1.369M19 11v.081A6.92 6.92 0 0 1 12.081 18h-.212A6.84 6.84 0 0 1 7.5 16.432" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18.5 2.5 4 16.5" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M16.5 7.5V11a4.5 4.5 0 0 1-7.27 3.547M7.5 13V7.5A4.5 4.5 0 0 1 15.742 5" })); } const ForwardRef = React.forwardRef(MicrophoneSlashIcon); module.exports = ForwardRef;