@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 950 B
JavaScript
const React = require("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.081v0V11"
}), /*#__PURE__*/React.createElement("path", {
d: "M7.5 7.5a4.5 4.5 0 1 1 9 0V11a4.5 4.5 0 1 1-9 0z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M8.4 21h7.2M15 6h1M8 8h2"
}));
}
const ForwardRef = React.forwardRef(MicrophoneIcon);
module.exports = ForwardRef;