@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 926 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const MicrophoneIcon = ({
title,
titleId,
...props
}, ref) => /*#__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: ref,
"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.081V11M8.4 21h7.2"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M8 6h3.5M8 9h3.5M8 12h3.5m.5-9a4.5 4.5 0 0 1 4.5 4.5V11a4.5 4.5 0 0 1-9 0V7.5A4.5 4.5 0 0 1 12 3Z",
opacity: 0.4
}));
const ForwardRef = forwardRef(MicrophoneIcon);
module.exports = ForwardRef;