softicons.dev

phone icon

Free phone SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons communication 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="M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3 19.5 19.5 0 0 1-6-6 19.8 19.8 0 0 1-3-8.7A2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.4c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2Z"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/communication/phone.svg"
     width="24" height="24" alt="phone icon">

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

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

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

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