Format List Bulleted icon

Format List Bulleted is a Google Material Symbol from the Text category. It's one of the 500 most used Material Symbols. 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.

GradeOptical size

Outlined, unfilled, weight 400

format_list_bulleted_outlined_fill0_wght400.svg

Format List Bulleted 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,GRAD@20..48,100..700,0..1,-50..200&icon_names=format_list_bulleted" />

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

Format List Bulleted icon in React

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

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

Format List Bulleted icon in MUI

The @mui/icons-material component (from the older Material Icons set, so no weight or grade):

npm install @mui/icons-material @mui/material @emotion/react @emotion/styled

import FormatListBulletedOutlinedIcon from "@mui/icons-material/FormatListBulletedOutlined";

<FormatListBulletedOutlinedIcon />

Format List Bulleted icon in Vue

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

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

Format List Bulleted icon in Angular

With Angular Material and the font from the HTML tab:

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

Format List Bulleted 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.format_list_bulleted, fill: 0, weight: 400, grade: 0, opticalSize: 24)

// Or Flutter's built-in Material Icons (the older designs, no fill or weight):
Icon(Icons.format_list_bulleted_outlined)

Format List Bulleted icon in Android

A vector drawable of the selected style, fill and weight, for XML layouts and Jetpack Compose:

<!-- res/drawable/ic_format_list_bulleted.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="M9.425 19.05v-1.5h11.575v1.5H9.425Zm0-6.3v-1.5h11.575v1.5H9.425Zm0-6.325v-1.5h11.575v1.5H9.425ZM4.725 19.975q-.701 0-1.201-.475Q3.025 19.025 3.025 18.313t.488-1.2q.487-.488 1.2-.488t1.187 .5q.475 .499 .475 1.2 0 .681-.485 1.165Q5.406 19.975 4.725 19.975Zm0-6.3q-.701 0-1.201-.487Q3.025 12.7 3.025 12t.499-1.187Q4.024 10.325 4.725 10.325q.681 0 1.165 .488Q6.375 11.3 6.375 12t-.485 1.188Q5.406 13.675 4.725 13.675Zm-1.212-6.812Q3.025 6.375 3.025 5.675t.488-1.187Q4 4 4.7 4t1.188 .488Q6.375 4.975 6.375 5.675t-.487 1.188Q5.4 7.35 4.7 7.35t-1.187-.487Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_format_list_bulleted), contentDescription = "Format List Bulleted")

Format List Bulleted icon in SVG

npm install @material-symbols/svg-400

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.47.5/outlined/format_list_bulleted.svg" width="24" height="24" alt="Format List Bulleted">

Format List Bulleted 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

NameFormat List Bulleted
Ligatureformat_list_bulleted
Code pointU+E241
CategoryText
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/format_list_bulleted.svg, format_list_bulleted-fill.svg
FlutterSymbols.format_list_bulleted (Material Icons: Icons.format_list_bulleted)
MUI@mui/icons-material/FormatListBulleted
LicenseApache License 2.0 (© Google LLC)

Keywords

textedittypewritingeditingcontentdocstructureeditorsheetorganizeselectionarrangement

Related icons