UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 837 B
const React = require("react"); function MicrophoneOff01Icon({ 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", strokeLinejoin: "round", d: "M15 9.4V5a3 3 0 00-5.688-1.334M12 19v3m0-3a7 7 0 01-7-7v-2m7 9a7 7 0 007-7v-2M8 22h8M2 2l20 20m-10-7a3 3 0 01-3-3V9l5.123 5.12A2.99 2.99 0 0112 15z" })); } const ForwardRef = React.forwardRef(MicrophoneOff01Icon); module.exports = ForwardRef;