@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.61 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Microphone({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Microphone",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M5 3a3 3 0 0 1 6 0v4a3 3 0 0 1-6 0V3Zm4 0v4a1 1 0 0 1-2 0V3a1 1 0 0 1 2 0Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M7 14v2h2v-3.07a6.91 6.91 0 0 0 1.228-.285 6.225 6.225 0 0 0 1.932-1.036 5.07 5.07 0 0 0 1.347-1.618A4.318 4.318 0 0 0 14 8V6.5h-2V8c0 .359-.088.722-.269 1.07a3.063 3.063 0 0 1-.82.978 4.23 4.23 0 0 1-1.312.698A5.101 5.101 0 0 1 8 11a5.101 5.101 0 0 1-1.599-.254 4.23 4.23 0 0 1-1.312-.698 3.074 3.074 0 0 1-.82-.977A2.32 2.32 0 0 1 4 8V6.5H2V8a4.3 4.3 0 0 0 .493 1.99 5.07 5.07 0 0 0 1.347 1.62c.563.45 1.221.8 1.932 1.035A7 7 0 0 0 7 12.931V14Z",
shapeRendering: "geometricPrecision"
}));
}
Microphone.displayName = 'Microphone';
export default createBaseComponent(Microphone);