phone outgoing icon
Free phone outgoing 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">
<polyline points="22 8 22 2 16 2"/>
<line x1="16" y1="8" x2="22" y2="2"/>
<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"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/communication/phone-outgoing.svg"
width="24" height="24" alt="phone outgoing icon">
<!-- …or paste the raw SVG from the SVG tab -->import { PhoneOutgoingIcon } from "@softicons/react";
export default function Example() {
return <PhoneOutgoingIcon size={24} strokeWidth={2} />;
}<script setup>
import { PhoneOutgoingIcon } from "@softicons/vue";
</script>
<template>
<PhoneOutgoingIcon :size="24" :stroke-width="2" />
</template>import { PhoneOutgoingIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [PhoneOutgoingIconComponent],
template: `<phone-outgoing-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}