UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 751 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Mic = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __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" }))); }); Mic.displayName = 'Mic'; export var MicDimensions = { height: 16, width: 16 };