Accessible icon

Accessible is a Google Material Symbol from the Actions 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

accessible_outlined_fill0_wght400.svg

Accessible 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=accessible" />

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

Accessible icon in React

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

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

Accessible icon in Vue

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

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

Accessible icon in Angular

With Angular Material and the font from the HTML tab:

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

Accessible 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.accessible, fill: 0, weight: 400)

Accessible icon in Android

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

<!-- res/drawable/accessible.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="M10.763 5.113Q10.225 4.575 10.225 3.825t.538-1.287Q11.3 2 12.05 2t1.288 .538Q13.875 3.075 13.875 3.825t-.537 1.288Q12.8 5.65 12.05 5.65t-1.287-.537ZM17.4 22v-5.225H12.05q-.75 0-1.275-.525t-.525-1.275v-6.175q0-.75 .525-1.275t1.275-.525q.575 0 .975 .225t.95 .875q1.05 1.225 2.3 2.05t2.725 .875v1.5q-1.275 0-2.625-.625t-2.6-1.675v4.575h3.325q.75 0 1.275 .525t.525 1.275v5.4h-1.5Zm-7.5 0q-2.075 0-3.487-1.412T5 17.1q0-1.7 1.238-3.137T9.5 12.3v1.525q-1.35 .125-2.162 1.113T6.525 17.1q0 1.45 .963 2.425t2.412 .975q1.175 0 2.175-.812t1.1-2.163h1.525q-.2 2-1.65 3.238T9.9 22Z" />
</vector>

Accessible icon in SVG

npm install @material-symbols/svg-400

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

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

Accessible 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

NameAccessible
Ligatureaccessible
Code pointU+E914
CategoryActions
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/accessible.svg, accessible-fill.svg
FlutterSymbols.accessible
LicenseApache License 2.0 (© Google LLC)

Keywords

actionsinformationhumanpersondisabledpeoplebodymedicalhealthcaresigntransportfigurehelp

Related icons