softicons.dev

ear icon

Free ear 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"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/ear.svg"
     width="24" height="24" alt="ear icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { EarIcon } from "@softicons/react";

export default function Example() {
  return <EarIcon size={24} strokeWidth={2} />;
}
<script setup>
import { EarIcon } from "@softicons/vue";
</script>

<template>
  <EarIcon :size="24" :stroke-width="2" />
</template>
import { EarIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [EarIconComponent],
  template: `<ear-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}