UNPKG

@astraicons/react

Version:

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

28 lines 930 B
import * as React from "react"; function MicrophoneIcon({ 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-3M5 11.081v.05A6.87 6.87 0 0 0 11.87 18h.211A6.92 6.92 0 0 0 19 11.081v0V11M8.4 21h7.2" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M15 6h1M8 8h2m2-5a4.5 4.5 0 0 1 4.5 4.5V11a4.5 4.5 0 1 1-9 0V7.5A4.5 4.5 0 0 1 12 3Z", opacity: 0.4 })); } const ForwardRef = React.forwardRef(MicrophoneIcon); export default ForwardRef;