UNPKG

styled-icons

Version:

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

15 lines (14 loc) 1.1 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var MicrophoneOff = 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: "M21.707 20.293l-3.4-3.4A7.93 7.93 0 0020 12h-2a5.945 5.945 0 01-1.119 3.467l-1.449-1.45A3.926 3.926 0 0016 12V6c0-2.217-1.785-4.021-3.979-4.021-.07 0-.14.009-.209.025A4.006 4.006 0 008 6v.586L3.707 2.293 2.293 3.707l18 18 1.414-1.414zM6 12H4c0 4.072 3.06 7.436 7 7.931V22h2v-2.069a7.935 7.935 0 002.241-.63l-1.549-1.548A5.983 5.983 0 0112 18c-3.309 0-6-2.691-6-6z", key: "k0" }), React.createElement("path", { d: "M8.007 12.067a3.996 3.996 0 003.926 3.926l-3.926-3.926z", key: "k1" }))); }); MicrophoneOff.displayName = 'MicrophoneOff'; export var MicrophoneOffDimensions = { height: 24, width: 24 };