1 | const React = require("react");
|
2 | function MicrophoneIcon({
|
3 | title,
|
4 | titleId,
|
5 | ...props
|
6 | }, svgRef) {
|
7 | return React.createElement("svg", Object.assign({
|
8 | xmlns: "http://www.w3.org/2000/svg",
|
9 | fill: "none",
|
10 | viewBox: "0 0 24 24",
|
11 | strokeWidth: 1.5,
|
12 | stroke: "currentColor",
|
13 | "aria-hidden": "true",
|
14 | ref: svgRef,
|
15 | "aria-labelledby": titleId
|
16 | }, props), title ? React.createElement("title", {
|
17 | id: titleId
|
18 | }, title) : null, React.createElement("path", {
|
19 | strokeLinecap: "round",
|
20 | strokeLinejoin: "round",
|
21 | d: "M12 18.75a6 6 0 006-6v-1.5m-6 7.5a6 6 0 01-6-6v-1.5m6 7.5v3.75m-3.75 0h7.5M12 15.75a3 3 0 01-3-3V4.5a3 3 0 116 0v8.25a3 3 0 01-3 3z"
|
22 | }));
|
23 | }
|
24 | const ForwardRef = React.forwardRef(MicrophoneIcon);
|
25 | module.exports = ForwardRef; |
\ | No newline at end of file |