sebikostudio-icons
Version:
A collection of icon components
29 lines • 1.28 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const MicIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "mic, microphone, sound, soundtrack, track, voice, voiceover",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M10 1.5C8.61929 1.5 7.5 2.61929 7.5 4V10C7.5 11.3807 8.61929 12.5 10 12.5C11.3807 12.5 12.5 11.3807 12.5 10V4C12.5 2.61929 11.3807 1.5 10 1.5Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M10 15.5C6.96243 15.5 4.5 13.0376 4.5 10V6.5M10 15.5C13.0376 15.5 15.5 13.0376 15.5 10V6.5M10 15.5V18.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
})));
export default MicIcon;