Sort By Alpha icon

Sort By Alpha is a Google Material Symbol from the UI actions 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

sort_by_alpha_outlined_fill0_wght400.svg

Sort By Alpha 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=sort_by_alpha" />

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

Sort By Alpha icon in React

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

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

Sort By Alpha 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 SortByAlphaOutlinedIcon from "@mui/icons-material/SortByAlphaOutlined";

<SortByAlphaOutlinedIcon />

Sort By Alpha icon in Vue

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

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

Sort By Alpha icon in Angular

With Angular Material and the font from the HTML tab:

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

Sort By Alpha 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.sort_by_alpha, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Sort By Alpha icon in Android

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

<!-- res/drawable/ic_sort_by_alpha.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="m2 17 4.05-10h1.575l4.025 10h-1.575l-.95-2.475H4.525l-.95 2.475H2Zm3.025-3.775h3.6l-1.75-4.625h-.1l-1.75 4.625Zm8.675 3.775v-1.55l5.825-7.15H14.15v-1.3h6.8v1.575L15.175 15.7h5.825v1.3H13.7ZM9.6 4.4l2.4-2.4 2.4 2.4H9.6Zm2.4 17.6-2.4-2.4h4.8l-2.4 2.4Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_sort_by_alpha), contentDescription = "Sort By Alpha")

Sort By Alpha icon in SVG

npm install @material-symbols/svg-400

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

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

Sort By Alpha 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

NameSort By Alpha
Ligaturesort_by_alpha
Code pointU+E053
CategoryUI actions
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/sort_by_alpha.svg, sort_by_alpha-fill.svg
FlutterSymbols.sort_by_alpha (Material Icons: Icons.sort_by_alpha)
MUI@mui/icons-material/SortByAlpha
LicenseApache License 2.0 (© Google LLC)

Keywords

ui actionstypelistletterscharacterfontalphabetorganizearrangementorder

Related icons