Call Connecting icon

Used in call scenarios. The Call Connecting icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.

Regular (outlined)

SVG

Filled

SVG

Every size and style

Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.

Regular, 20 px

ic_fluent_call_connecting_20_regular.svg

Call Connecting icon in React

npm install @fluentui/react-icons

import { CallConnecting20Regular } from "@fluentui/react-icons";

export function Example() {
  return <CallConnecting20Regular aria-label="Call Connecting" />;
}

Call Connecting icon in SVG

npm install @fluentui/svg-icons

import icon from "@fluentui/svg-icons/icons/call_connecting_20_regular.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@fluentui/[email protected]/icons/call_connecting_20_regular.svg" width="20" height="20" alt="Call Connecting">

Call Connecting icon in Blazor

Microsoft's Fluent UI Blazor icons package:

dotnet add package Microsoft.FluentUI.AspNetCore.Components.Icons

<FluentIcon Value="@(new Icons.Regular.Size20.CallConnecting())" />

Call Connecting icon in Flutter

flutter pub add fluentui_system_icons

import 'package:fluentui_system_icons/fluentui_system_icons.dart';

Icon(FluentIcons.call_connecting_20_regular)

Call Connecting icon in WinUI / WPF

Add FluentSystemIcons-Regular.ttf from Microsoft's repository to your app, then use the glyph:

<!-- WinUI 3 (font in Assets/Fonts) -->
<FontIcon FontFamily="ms-appx:///Assets/Fonts/FluentSystemIcons-Regular.ttf#FluentSystemIcons-Regular" Glyph="&#xE278;" FontSize="20" />

<!-- WPF (font in Fonts/, Build Action: Resource) -->
<TextBlock FontFamily="pack://application:,,,/Fonts/#FluentSystemIcons-Regular" Text="&#xE278;" FontSize="20" />

Call Connecting icon in Icon font

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/microsoft/fluentui-system-icons@9cf8af0f95a555918a60b8147a2f33a6a1248442/fonts/FluentSystemIcons-Regular.css">

<i class="icon-ic_fluent_call_connecting_20_regular"></i>

/* or use the code point in your own CSS */
.icon::before {
  font-family: "FluentSystemIcons-Regular";
  content: "\e278";
  font-size: 20px;
}

Call Connecting icon in Android

// build.gradle
implementation("com.microsoft.design:fluent-system-icons:1.1.341@aar")

<!-- layout XML -->
<ImageView android:src="@drawable/ic_fluent_call_connecting_20_regular" />

// Kotlin
R.drawable.ic_fluent_call_connecting_20_regular

Call Connecting icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .callConnecting20Regular)

Call Connecting icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'>…</svg>")

Use the Call Connecting icon in React

Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.

npm install @fluentui/react-icons

import { CallConnecting20Regular, CallConnecting20Filled } from "@fluentui/react-icons";

export function Example() {
  return <CallConnecting20Regular aria-label="Call Connecting" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_call_connecting_20_regular.svg" width="20" height="20" alt="Call Connecting">

Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:

<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M6.54 2.12a4 4 0 0 0-2.99.32 2.9 2.9 0 0 0-1.5 2.5c-.06 1.8.36 4.22 2.02 7.06A16 16 0 0 0 9 17.48c.94.63 1.99.65 2.88.24a4 4 0 0 0 1.96-2.22c.2-.5.15-1.06-.12-1.53l-.95-1.7a2.5 2.5 0 0 0-3.07-1.12l-.67.25c-.32.13-.62.07-.79-.1A4.3 4.3 0 0 1 7.1 9.19c-.06-.25.06-.55.34-.77l.6-.45a2.5 2.5 0 0 0 .67-3.24l-.97-1.7c-.26-.45-.7-.78-1.2-.9m-3.5 2.85c.02-.77.41-1.33 1-1.66a3 3 0 0 1 2.25-.22q.37.1.58.43l.97 1.7c.38.65.2 1.49-.4 1.94l-.6.46c-.52.39-.88 1.06-.71 1.78.22.99.7 1.92 1.42 2.62.52.51 1.27.54 1.85.32l.66-.26a1.5 1.5 0 0 1 1.85.67l.95 1.7q.18.34.06.7a3 3 0 0 1-1.45 1.66 1.9 1.9 0 0 1-1.9-.16 15 15 0 0 1-4.64-5.15 12.3 12.3 0 0 1-1.89-6.53m9.7-2.9a.5.5 0 1 0-.48.87l.38.21a8.5 8.5 0 0 1 4.33 6.58l.03.32a.5.5 0 1 0 1-.1l-.03-.32a9.5 9.5 0 0 0-4.84-7.35zm-1.17 2.67a.5.5 0 0 1 .69-.17l.12.08a6.5 6.5 0 0 1 3.07 4.5l.04.27a.5.5 0 1 1-.98.16l-.05-.27a5.5 5.5 0 0 0-2.6-3.8l-.12-.08a.5.5 0 0 1-.17-.69"/></svg>

Details

NameCall Connecting
StylesRegular (outlined), Filled
Sizes20 px
Regular (outlined) fileic_fluent_call_connecting_20_regular.svg
Filled fileic_fluent_call_connecting_20_filled.svg
React (Regular)CallConnecting20Regular
React (Filled)CallConnecting20Filled
LicenseMIT (© Microsoft Corporation)

Keywords

handsetaudio

Related icons