UNPKG

@astraicons/react

Version:

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

25 lines 1.21 kB
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", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M19.247 10.095a.75.75 0 0 1 .75.75v.084a7.95 7.95 0 0 1-7.249 7.919v1.651h2.978a.75.75 0 0 1 0 1.5H8.271a.75.75 0 0 1 0-1.5h2.977v-1.647A7.9 7.9 0 0 1 4 10.98v-.052a.75.75 0 0 1 1.5 0v.052a6.397 6.397 0 0 0 6.397 6.397h.151a6.45 6.45 0 0 0 6.449-6.449v-.085a.75.75 0 0 1 .75-.75" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M7.008 6.577C7.152 4.026 9.332 2 12 2c1.85 0 3.467.975 4.331 2.423h-2.109a.82.82 0 0 0-.833.808.82.82 0 0 0 .833.807h2.709q.068.395.069.808v4.308C17 13.83 14.761 16 12 16s-5-2.17-5-4.846V8.192h2.778a.82.82 0 0 0 .833-.807.82.82 0 0 0-.833-.808z", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(MicrophoneIcon); export default ForwardRef;