@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 847 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Mic = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M24 4a8 8 0 0 0-8 8v12a8 8 0 1 0 16 0V12a8 8 0 0 0-8-8Zm1 33.71a14 14 0 0 0 13-13.96 1.25 1.25 0 1 0-2.5 0 11.5 11.5 0 1 1-23 0 1.25 1.25 0 1 0-2.5 0 14 14 0 0 0 12.5 13.92v5.08a1.25 1.25 0 1 0 2.5 0v-5.04Z"
}));
});
Mic.displayName = 'Mic';
export var MicDimensions = {
height: 48,
width: 48
};