Elderly icon

Elderly is a Google Material Symbol from the Social 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.

GradeOptical size

Outlined, unfilled, weight 400

elderly_outlined_fill0_wght400.svg

Elderly 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=elderly" />

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

Elderly icon in React

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

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

Elderly 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 ElderlyOutlinedIcon from "@mui/icons-material/ElderlyOutlined";

<ElderlyOutlinedIcon />

Elderly icon in Vue

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

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

Elderly icon in Angular

With Angular Material and the font from the HTML tab:

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

Elderly 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.elderly, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Elderly icon in Android

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

<!-- res/drawable/ic_elderly.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="m8 23-1.2-.9 2.6-3.475-.2-4.775q-.05-1.3 .138-2.737T9.925 8.575l-2.425 1.4v2.775h-1.5v-3.65l4.175-2.4q.425-.25 .813-.375t.737-.125q.675 0 1.213 .525t1.037 1.65q.5 1.15 1.475 1.888t2.35 1.162q.175-.1 .338-.137T18.475 11.25q.575 0 1.05 .463t.475 1.037v10.25h-.75v-10.25q0-.3-.225-.525t-.525-.225q-.3 0-.525 .225t-.225 .525v.75h-.75v-.825q-1.05-.275-2.187-1.05T13.025 9.8q-.3 .85-.462 1.875t-.113 1.825l2.425 3.425v6.075h-1.5v-5.475l-2.125-2.375-.25 3.85L8 23Zm5.45-17.85q-.75 0-1.287-.537T11.625 3.325q0-.75 .538-1.287T13.45 1.5q.75 0 1.288 .538T15.275 3.325q0 .75-.537 1.288T13.45 5.15Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_elderly), contentDescription = "Elderly")

Elderly icon in SVG

npm install @material-symbols/svg-400

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

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

Elderly 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

NameElderly
Ligatureelderly
Code pointU+F21A
CategorySocial
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/elderly.svg, elderly-fill.svg
FlutterSymbols.elderly (Material Icons: Icons.elderly)
MUI@mui/icons-material/Elderly
LicenseApache License 2.0 (© Google LLC)

Keywords

socialhumanpersonpeoplebodyprofileuseraccountsilhouetteavatarfigure

Related icons