mic off icon
Free mic off SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons media set.
Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<line x1="2" y1="2" x2="22" y2="22"/>
<path d="M9 9v3a3 3 0 0 0 5.1 2.1"/>
<path d="M15 9.3V5a3 3 0 0 0-5.9-.7"/>
<path d="M5 10a7 7 0 0 0 10.7 6"/>
<path d="M19 10a7 7 0 0 1-.9 3.4"/>
<line x1="12" y1="19" x2="12" y2="22"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/media/mic-off.svg"
width="24" height="24" alt="mic off icon">
<!-- …or paste the raw SVG from the SVG tab -->import { MicOffIcon } from "@softicons/react";
export default function Example() {
return <MicOffIcon size={24} strokeWidth={2} />;
}<script setup>
import { MicOffIcon } from "@softicons/vue";
</script>
<template>
<MicOffIcon :size="24" :stroke-width="2" />
</template>import { MicOffIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [MicOffIconComponent],
template: `<mic-off-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}