Game Chat icon

Used to represent game chat, or in game communication generally. The Game Chat icon is part of Microsoft's Fluent UI System Icons, available here in regular, filled and color 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
Game Chat Color

Color

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_game_chat_20_regular.svg

Game Chat icon in React

npm install @fluentui/react-icons

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

export function Example() {
  return <GameChat20Regular aria-label="Game Chat" />;
}

Game Chat icon in SVG

npm install @fluentui/svg-icons

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

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

Game Chat icon in Blazor

Microsoft's Fluent UI Blazor icons package:

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

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

Game Chat icon in Flutter

flutter pub add fluentui_system_icons

import 'package:fluentui_system_icons/fluentui_system_icons.dart';

Icon(FluentIcons.game_chat_20_regular)

Game Chat 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="&#xF066C;" FontSize="20" />

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

Game Chat 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_game_chat_20_regular"></i>

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

Game Chat icon in Android

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

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

// Kotlin
R.drawable.ic_fluent_game_chat_20_regular

Game Chat icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .gameChat20Regular)

Game Chat 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 Game Chat 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 { GameChat20Regular, GameChat20Filled } from "@fluentui/react-icons";

export function Example() {
  return <GameChat20Regular aria-label="Game Chat" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_game_chat_20_regular.svg" width="20" height="20" alt="Game Chat">

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.5 5.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zM6 8c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2A.5.5 0 0 1 6 8M2 7a6 6 0 1 1 11.55 2.27l-.14.08-.12.08a1 1 0 0 1-.26.07h-.7Q13 8.38 13 7a5 5 0 1 0-9.3 2.55.5.5 0 0 1 .05.4l-.5 1.78 1.65-.56a.5.5 0 0 1 .43.06q.53.33 1.14.53l-.43.91A6 6 0 0 1 5 12.2l-2.34.77a.5.5 0 0 1-.64-.6l.71-2.5A6 6 0 0 1 2 7m11.25 6.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m.68-3.04c.3-.18.67-.25 1.02-.19l.77.13a2 2 0 0 1 1.47 1.12l1.2 2.52c.56 1.2.69 2.19.57 3a3.5 3.5 0 0 1-.82 1.8c-.27.32-.65.45-1.01.4a1.4 1.4 0 0 1-.9-.49l-.82-.97a1.5 1.5 0 0 0-1.15-.53h-3.52c-.44 0-.86.2-1.15.53l-.82.97a1.4 1.4 0 0 1-.9.5c-.36.04-.74-.09-1-.4-.35-.4-.71-.99-.83-1.8s0-1.82.57-3l1.2-2.53a2 2 0 0 1 1.47-1.12l.77-.13c.35-.06.72 0 1.02.2l.13.07q.36.21.77.21h1.06q.41 0 .77-.21zm.85.8a.5.5 0 0 0-.34.06l-.13.07a2.5 2.5 0 0 1-1.28.36h-1.06q-.7 0-1.28-.36l-.13-.07a.5.5 0 0 0-.34-.06l-.77.13a1 1 0 0 0-.74.56l-1.2 2.52a4.3 4.3 0 0 0-.48 2.43c.09.6.34 1.01.59 1.3q.06.06.14.05a.4.4 0 0 0 .25-.14l.82-.97a2.5 2.5 0 0 1 1.9-.89h3.53c.74 0 1.44.32 1.91.89l.82.97q.13.14.25.14.09.01.14-.05c.25-.29.5-.7.59-1.3.09-.59 0-1.39-.48-2.43l-1.2-2.52a1 1 0 0 0-.74-.56z"/></svg>

Details

NameGame Chat
StylesRegular (outlined), Filled, Color
Sizes20 px
Regular (outlined) fileic_fluent_game_chat_20_regular.svg
Filled fileic_fluent_game_chat_20_filled.svg
Color fileic_fluent_game_chat_20_color.svg
React (Regular)GameChat20Regular
React (Filled)GameChat20Filled
React (Color)GameChat20Color
LicenseMIT (© Microsoft Corporation)

Keywords

controllerchattalkinteractvideo game

Related icons