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.
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" />;
}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
| Name | Call Connecting |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_call_connecting_20_regular.svg |
| Filled file | ic_fluent_call_connecting_20_filled.svg |
| React (Regular) | CallConnecting20Regular |
| React (Filled) | CallConnecting20Filled |
| License | MIT (© Microsoft Corporation) |