UNPKG

styled-icons

Version:

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

14 lines (13 loc) 858 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Microphone = 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 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M12 16c2.206 0 4-1.795 4-4V6c0-2.206-1.794-4-4-4S8 3.794 8 6v6c0 2.205 1.794 4 4 4zm7-4v-2a1 1 0 10-2 0v2c0 2.757-2.243 5-5 5s-5-2.243-5-5v-2a1 1 0 10-2 0v2c0 3.52 2.613 6.432 6 6.92V20H8a1 1 0 100 2h8a1 1 0 100-2h-3v-1.08c3.387-.488 6-3.4 6-6.92z", key: "k0" }))); }); Microphone.displayName = 'Microphone'; export var MicrophoneDimensions = { height: 24, width: 24 };