Text Edit Style Character Ga icon

The Text Edit Style Character Ga icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 28 to 32 px. 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, 28 px

ic_fluent_text_edit_style_character_ga_28_regular.svg

Text Edit Style Character Ga icon in React

npm install @fluentui/react-icons

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

export function Example() {
  return <TextEditStyleCharacterGa28Regular aria-label="Text Edit Style Character Ga" />;
}

Text Edit Style Character Ga icon in SVG

npm install @fluentui/svg-icons

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@fluentui/[email protected]/icons/text_edit_style_character_ga_28_regular.svg" width="28" height="28" alt="Text Edit Style Character Ga">

Text Edit Style Character Ga icon in Blazor

Microsoft's Fluent UI Blazor icons package:

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

<FluentIcon Value="@(new Icons.Regular.Size28.TextEditStyleCharacterGa())" />

Text Edit Style Character Ga 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="&#xF0AA8;" FontSize="28" />

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

Text Edit Style Character Ga 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_text_edit_style_character_ga_28_regular"></i>

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

Text Edit Style Character Ga icon in Android

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

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

// Kotlin
R.drawable.ic_fluent_text_edit_style_character_ga_28_regular

Text Edit Style Character Ga icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .textEditStyleCharacterGa28Regular)

Text Edit Style Character Ga 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='28' height='28' viewBox='0 0 28 28'>…</svg>")

Use the Text Edit Style Character Ga 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 { TextEditStyleCharacterGa28Regular, TextEditStyleCharacterGa28Filled } from "@fluentui/react-icons";

export function Example() {
  return <TextEditStyleCharacterGa28Regular aria-label="Text Edit Style Character Ga" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_text_edit_style_character_ga_28_regular.svg" width="28" height="28" alt="Text Edit Style Character Ga">

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

<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M21.07 9a3.93 3.93 0 0 1 2.78 6.71l-7.76 7.76q-.7.7-1.64.96l-5.5 1.54a.75.75 0 0 1-.92-.92l1.54-5.5q.26-.94.96-1.64l7.76-7.76A4 4 0 0 1 21.07 9m0 1.5c-.65 0-1.26.26-1.72.71l-7.76 7.76q-.42.43-.58.99l-1.18 4.2L14.04 23q.56-.16.99-.58l7.76-7.76a2.43 2.43 0 0 0-1.72-4.15M13.25 3c.41 0 .75.34.75.75V7.5h1.75a.75.75 0 0 1 0 1.5H14v4.03l-1.5 1.5V3.75c0-.41.34-.75.75-.75m-3.5 1c.4 0 .73.32.75.72v.09a5 5 0 0 1-.06.96 9 9 0 0 1-.66 2.37c-.8 1.84-2.46 3.89-5.83 4.83a.75.75 0 0 1-.4-1.44c2.88-.8 4.22-2.51 4.86-3.99a7 7 0 0 0 .54-1.96V5.5h-5.2a.75.75 0 0 1 0-1.5z"/></svg>

Details

NameText Edit Style Character Ga
StylesRegular (outlined), Filled
Sizes28 px, 32 px
Regular (outlined) fileic_fluent_text_edit_style_character_ga_28_regular.svg
Filled fileic_fluent_text_edit_style_character_ga_28_filled.svg
React (Regular)TextEditStyleCharacterGa28Regular, TextEditStyleCharacterGa32Regular
React (Filled)TextEditStyleCharacterGa28Filled, TextEditStyleCharacterGa32Filled
LicenseMIT (© Microsoft Corporation)

Related icons