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.
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" />;
}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
| Name | Game Chat |
|---|---|
| Styles | Regular (outlined), Filled, Color |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_game_chat_20_regular.svg |
| Filled file | ic_fluent_game_chat_20_filled.svg |
| Color file | ic_fluent_game_chat_20_color.svg |
| React (Regular) | GameChat20Regular |
| React (Filled) | GameChat20Filled |
| React (Color) | GameChat20Color |
| License | MIT (© Microsoft Corporation) |