Text Abc Underline Double icon

The Text Abc Underline Double icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 32 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, 32 px

ic_fluent_text_abc_underline_double_32_regular.svg

Text Abc Underline Double icon in React

npm install @fluentui/react-icons

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

export function Example() {
  return <TextAbcUnderlineDouble32Regular aria-label="Text Abc Underline Double" />;
}

Text Abc Underline Double icon in SVG

npm install @fluentui/svg-icons

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@fluentui/[email protected]/icons/text_abc_underline_double_32_regular.svg" width="32" height="32" alt="Text Abc Underline Double">

Text Abc Underline Double icon in Blazor

Microsoft's Fluent UI Blazor icons package:

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

<FluentIcon Value="@(new Icons.Regular.Size32.TextAbcUnderlineDouble())" />

Text Abc Underline Double icon in Flutter

flutter pub add fluentui_system_icons

import 'package:fluentui_system_icons/fluentui_system_icons.dart';

Icon(FluentIcons.text_abc_underline_double_32_regular)

Text Abc Underline Double 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="&#xF00B0;" FontSize="32" />

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

Text Abc Underline Double 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_abc_underline_double_32_regular"></i>

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

Text Abc Underline Double 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_abc_underline_double_32_regular" />

// Kotlin
R.drawable.ic_fluent_text_abc_underline_double_32_regular

Text Abc Underline Double icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .textAbcUnderlineDouble32Regular)

Text Abc Underline Double 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='32' height='32' viewBox='0 0 32 32'>…</svg>")

Use the Text Abc Underline Double 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 { TextAbcUnderlineDouble32Regular, TextAbcUnderlineDouble32Filled } from "@fluentui/react-icons";

export function Example() {
  return <TextAbcUnderlineDouble32Regular aria-label="Text Abc Underline Double" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_text_abc_underline_double_32_regular.svg" width="32" height="32" alt="Text Abc Underline Double">

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

<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M7.5 5a1 1 0 0 1 .92.6l3.5 8a1 1 0 1 1-1.84.8l-.6-1.4H5.52l-.61 1.4a1 1 0 0 1-1.84-.8l3.5-8A1 1 0 0 1 7.5 5m1.1 6L7.5 8.5 6.4 11zM4 19a1 1 0 1 0 0 2h24a1 1 0 0 0 0-2zm0 6a1 1 0 1 0 0 2h24a1 1 0 0 0 0-2zm9-19a1 1 0 0 1 1-1h2.5a3 3 0 0 1 2.46 4.72A3 3 0 0 1 17 15h-3a1 1 0 0 1-1-1zm2 5v2h2a1 1 0 0 0 0-2zm0-2h1.5a1 1 0 0 0 0-2H15zm8 1c0-1.18.3-1.93.65-2.37Q24.17 7 24.98 7c.66 0 1.23.32 1.6 1.18a1 1 0 1 0 1.84-.8A3.7 3.7 0 0 0 24.98 5c-1.11 0-2.15.46-2.88 1.37-.73.9-1.1 2.14-1.1 3.63 0 1.5.37 2.74 1.1 3.63A3.6 3.6 0 0 0 24.98 15c1.53 0 2.78-.87 3.44-2.38a1 1 0 1 0-1.84-.8c-.37.86-.94 1.18-1.6 1.18q-.8 0-1.33-.63c-.36-.44-.65-1.2-.65-2.37"/></svg>

Details

NameText Abc Underline Double
StylesRegular (outlined), Filled
Sizes32 px
Regular (outlined) fileic_fluent_text_abc_underline_double_32_regular.svg
Filled fileic_fluent_text_abc_underline_double_32_filled.svg
React (Regular)TextAbcUnderlineDouble32Regular
React (Filled)TextAbcUnderlineDouble32Filled
LicenseMIT (© Microsoft Corporation)

Related icons