phone call icon
Free phone call 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="M15.5 3a5 5 0 0 1 5 5"/>
<path d="M15.5 7a1 1 0 0 1 1 1"/>
<path d="M21 16.5v2.5a2 2 0 0 1-2.2 2 19 19 0 0 1-8.3-3 18.6 18.6 0 0 1-5.7-5.7 19 19 0 0 1-3-8.4A2 2 0 0 1 3.8 3.4h2.5a2 2 0 0 1 2 1.7 12 12 0 0 0 .7 2.6 2 2 0 0 1-.5 2.1L7.3 11a15 15 0 0 0 5.7 5.7l1.2-1.2a2 2 0 0 1 2.1-.4 12 12 0 0 0 2.6.7 2 2 0 0 1 1.6 2Z"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/communication/phone-call.svg"
width="24" height="24" alt="phone call icon">
<!-- …or paste the raw SVG from the SVG tab -->import { PhoneCallIcon } from "@softicons/react";
export default function Example() {
return <PhoneCallIcon size={24} strokeWidth={2} />;
}<script setup>
import { PhoneCallIcon } from "@softicons/vue";
</script>
<template>
<PhoneCallIcon :size="24" :stroke-width="2" />
</template>import { PhoneCallIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [PhoneCallIconComponent],
template: `<phone-call-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}