ear off icon
Free ear off SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface 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">
<path d="M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 0 1-7 0"/>
<path d="M8.5 8.5a3.5 3.5 0 1 1 7 0c0 1.5-1 2-1.6 2.5"/>
<line x1="2" y1="2" x2="22" y2="22"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/ear-off.svg"
width="24" height="24" alt="ear off icon">
<!-- …or paste the raw SVG from the SVG tab -->import { EarOffIcon } from "@softicons/react";
export default function Example() {
return <EarOffIcon size={24} strokeWidth={2} />;
}<script setup>
import { EarOffIcon } from "@softicons/vue";
</script>
<template>
<EarOffIcon :size="24" :stroke-width="2" />
</template>import { EarOffIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [EarOffIconComponent],
template: `<ear-off-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}