Adaptive Audio Mic Off icon

Adaptive Audio Mic Off is a Google Material Symbol from the Audio&Video category. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.

Outlined

SVG

Outlined, filled

SVG

Every style, fill and weight

Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.

Outlined, unfilled, weight 400

adaptive_audio_mic_off_outlined_fill0_wght400.svg

Adaptive Audio Mic Off icon in HTML

Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=adaptive_audio_mic_off" />

<span class="material-symbols-outlined">adaptive_audio_mic_off</span>

Adaptive Audio Mic Off icon in React

// With the font from the HTML tab:
export function AdaptiveAudioMicOffIcon() {
  return (
    <span className="material-symbols-outlined">
      adaptive_audio_mic_off
    </span>
  );
}

// Or as an SVG component (Vite + vite-plugin-svgr) instead:
//   npm install @material-symbols/svg-400
//   import AdaptiveAudioMicOffIcon from "@material-symbols/svg-400/outlined/adaptive_audio_mic_off.svg?react";

Adaptive Audio Mic Off icon in Vue

<!-- With the font from the HTML tab -->
<template>
  <span class="material-symbols-outlined">adaptive_audio_mic_off</span>
</template>

<!-- Or as an SVG component (Vite + vite-svg-loader):
     npm install @material-symbols/svg-400
     import AdaptiveAudioMicOffIcon from "@material-symbols/svg-400/outlined/adaptive_audio_mic_off.svg?component"; -->

Adaptive Audio Mic Off icon in Angular

With Angular Material and the font from the HTML tab:

<mat-icon fontSet="material-symbols-outlined">adaptive_audio_mic_off</mat-icon>

Adaptive Audio Mic Off icon in Flutter

Uses the community material_symbols_icons package.

flutter pub add material_symbols_icons

import 'package:material_symbols_icons/symbols.dart';

Icon(Symbols.adaptive_audio_mic_off, fill: 0, weight: 400)

Adaptive Audio Mic Off icon in Android

A vector drawable of the selected style, fill and weight:

<!-- res/drawable/adaptive_audio_mic_off.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="?attr/colorControlNormal">
        <path android:fillColor="@android:color/white" android:pathData="M20.15 22.6 1.4 3.875l1.05-1.075L21.2 21.55l-1.05 1.05Zm-2.425-9.95Zm5.275 1.5H18.175q-.056-.396-.178-.773Q17.875 13 17.725 12.65h3.775q0-.35-.175-.65t-.5-.475q-.875-.475-1.825-.687t-2-.238h-.325q-.15 0-.325 .025-.4-.375-.837-.687T14.575 9.4q.575-.15 1.188-.225t1.237-.075q1.2 0 2.325 .275t2.175 .825q.7 .35 1.1 1t.4 1.45v1.5ZM17 8q-1.25 0-2.125-.875t-.875-2.125q0-1.25 .875-2.125t2.125-.875q1.25 0 2.125 .875t.875 2.125q0 1.25-.875 2.125t-2.125 .875Zm0-1.5q.638 0 1.069-.431T18.5 5q0-.637-.431-1.069T17 3.5q-.637 0-1.069 .431T15.5 5q0 .638 .431 1.069T17 6.5Zm0-1.5ZM6.275 12.65ZM1 14.15v-1.5q0-.8 .4-1.45t1.1-1q1.05-.55 2.175-.825t2.325-.275q.419 0 .822 .038T8.65 9.25v1.5q-.425-.075-.828-.112Q7.419 10.6 7 10.6q-1.05 0-2 .225t-1.825 .7q-.325 .175-.5 .475t-.175 .65h3.775q-.15 .35-.272 .727-.122 .377-.178 .773H1Zm8.025-6.925L4.775 2.975q.425-.45 1.002-.712Q6.355 2 7 2q1.25 0 2.125 .875t.875 2.125q0 .645-.262 1.223Q9.475 6.8 9.025 7.225Zm2.973 9.7q-.723 0-1.235-.514Q10.25 15.897 10.25 15.175v-3.05q0-.325 .104-.612Q10.459 11.226 10.65 11l3.1 3.1v1.075q0 .722-.515 1.236Q12.721 16.925 11.998 16.925ZM11.5 22v-2.05q-1.8-.2-3.025-1.55t-1.225-3.225h1q0 1.574 1.088 2.687Q10.425 18.975 12 18.975q1.355 0 2.365-.85 1.01-.85 1.285-2.125l.825 .825q-.45 1.275-1.525 2.125t-2.45 1v2.05h-1Z" />
</vector>

Adaptive Audio Mic Off icon in SVG

npm install @material-symbols/svg-400

import icon from "@material-symbols/svg-400/outlined/adaptive_audio_mic_off.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/[email protected]/outlined/adaptive_audio_mic_off.svg" width="24" height="24" alt="Adaptive Audio Mic Off">

Adaptive Audio Mic Off icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'>…</svg>")

Details

NameAdaptive Audio Mic Off
Ligatureadaptive_audio_mic_off
Code pointU+F4CB
CategoryAudio&Video
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/adaptive_audio_mic_off.svg, adaptive_audio_mic_off-fill.svg
FlutterSymbols.adaptive_audio_mic_off
LicenseApache License 2.0 (© Google LLC)

Keywords

audio and videonetworkhumaniconpersondisabledslashpeopleinputsoundprofileusersocial

Related icons