styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 874 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Mic = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M7.5 11A2.5 2.5 0 0010 8.5v-6a2.5 2.5 0 10-5 0v6A2.5 2.5 0 007.5 11zM11 7v1.5a3.5 3.5 0 11-7 0V7H3v1.5a4.5 4.5 0 004 4.472V15H5v1h5v-1H8v-2.028A4.5 4.5 0 0012 8.5V7h-1z", key: "k0" })));
});
exports.Mic.displayName = 'Mic';
exports.MicDimensions = { height: 16, width: 16 };
;