@sanity/icons
Version:
The Sanity icons.
23 lines (22 loc) • 770 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function MicrophoneIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "microphone",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M12.5 16.5C15.8137 16.5 18.5 13.8137 18.5 10.5V10M12.5 16.5C9.18629 16.5 6.5 13.8137 6.5 10.5V10M12.5 16.5V20.5M8 20.5H17M15.5 10.5C15.5 12.1569 14.1569 13.5 12.5 13.5C10.8431 13.5 9.5 12.1569 9.5 10.5V7.5C9.5 5.84315 10.8431 4.5 12.5 4.5C14.1569 4.5 15.5 5.84315 15.5 7.5V10.5Z",
stroke: "currentColor",
strokeWidth: 1.2
})
});
}
export { MicrophoneIcon, MicrophoneIcon as default };
//# sourceMappingURL=Microphone.js.map