softicons.dev

phone off icon

Free phone off 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.9v2.1a2 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 3h2a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L7.1 10.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"/>
  <line x1="2" y1="2" x2="22" y2="22"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/communication/phone-off.svg"
     width="24" height="24" alt="phone off icon">

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

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

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

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