Thread Unread icon

Thread Unread is a Google Material Symbol from the Communicate category. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.

Outlined

SVG

Outlined, filled

SVG

Every style, fill and weight

Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.

Outlined, unfilled, weight 400

thread_unread_outlined_fill0_wght400.svg

Thread Unread icon in HTML

Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=thread_unread" />

<span class="material-symbols-outlined">thread_unread</span>

Thread Unread icon in React

// With the font from the HTML tab:
export function ThreadUnreadIcon() {
  return (
    <span className="material-symbols-outlined">
      thread_unread
    </span>
  );
}

// Or as an SVG component (Vite + vite-plugin-svgr) instead:
//   npm install @material-symbols/svg-400
//   import ThreadUnreadIcon from "@material-symbols/svg-400/outlined/thread_unread.svg?react";

Thread Unread icon in Vue

<!-- With the font from the HTML tab -->
<template>
  <span class="material-symbols-outlined">thread_unread</span>
</template>

<!-- Or as an SVG component (Vite + vite-svg-loader):
     npm install @material-symbols/svg-400
     import ThreadUnreadIcon from "@material-symbols/svg-400/outlined/thread_unread.svg?component"; -->

Thread Unread icon in Angular

With Angular Material and the font from the HTML tab:

<mat-icon fontSet="material-symbols-outlined">thread_unread</mat-icon>

Thread Unread icon in Flutter

Uses the community material_symbols_icons package.

flutter pub add material_symbols_icons

import 'package:material_symbols_icons/symbols.dart';

Icon(Symbols.thread_unread, fill: 0, weight: 400)

Thread Unread icon in Android

A vector drawable of the selected style, fill and weight:

<!-- res/drawable/thread_unread.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="?attr/colorControlNormal">
        <path android:fillColor="@android:color/white" android:pathData="M14.025 21q-1.3 0-2.15-.9t-.85-2.325q0-1.9 1.65-3.337T16.725 12.8q-.075-1.375-.587-2.037T14.6 10.1q-1.05 0-1.9 .65t-2.2 2.5q-1.5 2.05-2.487 2.813T5.85 16.825q-1.325 0-2.087-.862T3 13.6q0-.8 .575-2.075t1.925-3.5q.65-.975 .938-1.6t.287-1.05q0-.275-.187-.437T6 4.775q-.4 0-.85 .288T4.2 5.925l-1.2-1.275q.75-.85 1.475-1.25t1.5-.4q1.075 0 1.8 .7t.725 1.75q0 .75-.362 1.525T6.575 9.625q-1.125 1.725-1.462 2.513T4.775 13.725q0 .55 .375 .938t.9 .387q.35 0 .688-.175t.737-.6q.325-.35 .738-.85t.987-1.25q1.65-2.15 2.888-3T14.825 8.325q1.575 0 2.563 1.188T18.5 12.725h2.5v1.775H18.5q-.2 3-1.4 4.75t-3.075 1.75Zm.075-1.775q1.075 0 1.825-1.3t.85-3.375q-1.65 .175-2.812 1.175T12.8 17.95q0 .6 .338 .938T14.1 19.225Zm4.175-13.525q-.8-.8-.8-1.95t.8-1.95q.8-.8 1.95-.8t1.95 .8q.8 .8 .8 1.95t-.8 1.95q-.8 .8-1.95 .8t-1.95-.8Z" />
</vector>

Thread Unread icon in SVG

npm install @material-symbols/svg-400

import icon from "@material-symbols/svg-400/outlined/thread_unread.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/[email protected]/outlined/thread_unread.svg" width="24" height="24" alt="Thread Unread">

Thread Unread 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='24' height='24' viewBox='0 0 24 24'>…</svg>")

Details

NameThread Unread
Ligaturethread_unread
Code pointU+F4F9
CategoryCommunicate
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/thread_unread.svg, thread_unread-fill.svg
FlutterSymbols.thread_unread
LicenseApache License 2.0 (© Google LLC)

Keywords

communicatealertnotificationpointmessagechatalarmhandremindermotiongesturecommentdrawing

Related icons