Toys And Games icon

Toys And Games is a Google Material Symbol from the Activities 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

toys_and_games_outlined_fill0_wght400.svg

Toys And Games 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=toys_and_games" />

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

Toys And Games icon in React

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

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

Toys And Games icon in Vue

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

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

Toys And Games icon in Angular

With Angular Material and the font from the HTML tab:

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

Toys And Games 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.toys_and_games, fill: 0, weight: 400)

Toys And Games icon in Android

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

<!-- res/drawable/toys_and_games.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="M3 17.975q0-.305 .203-.515 .203-.21 .493-.21 .154 0 .279 .063t.25 .137q.3 .2 .65 .313t.725 .112q1.125 0 1.888-.762T8.25 15.225q0-1.125-.762-1.887T5.6 12.575q-.366 0-.708 .113Q4.55 12.8 4.225 13q-.125 .075-.25 .138t-.279 .062q-.29 0-.493-.21Q3 12.78 3 12.475v-3.275q0-.35 .263-.612T3.875 8.325h4.6q-.325-.5-.462-1.067Q7.875 6.692 7.875 6.125q0-1.719 1.205-2.922 1.204-1.203 2.925-1.203Q13.725 2 14.925 3.203q1.2 1.203 1.2 2.922 0 .567-.137 1.133Q15.85 7.825 15.525 8.325h4.6q.35 0 .613 .263T21 9.2v3.275q0 .308-.204 .517-.203 .208-.504 .208-.142 0-.267-.058-.125-.059-.25-.142-.3-.2-.65-.312t-.725-.113q-1.125 0-1.887 .763T15.75 15.225q0 1.125 .763 1.888T18.4 17.875q.375 0 .725-.112t.65-.313q.125-.075 .249-.137Q20.148 17.25 20.3 17.25q.298 0 .499 .208Q21 17.667 21 17.975v3.148q0 .352-.262 .615Q20.475 22 20.125 22H3.875q-.35 0-.612-.262T3 21.123V17.975Zm1.5 2.525h15v-1.325q-.275 .125-.55 .163t-.56 .037q-1.707 0-2.924-1.212Q14.25 16.95 14.25 15.225t1.216-2.937Q16.683 11.075 18.39 11.075q.285 0 .56 .038t.55 .087v-1.375H14.2q-.275 0-.487-.212T13.5 9.125q0-.35 .213-.65t.412-.6q.275-.4 .388-.839Q14.625 6.598 14.625 6.125q0-1.102-.761-1.864Q13.104 3.5 12.002 3.5t-1.864 .761Q9.375 5.023 9.375 6.125q0 .473 .113 .911Q9.6 7.475 9.875 7.875q.2 .3 .413 .6t.212 .65q0 .275-.212 .488T9.8 9.825H4.5v1.375q.275-.05 .55-.087t.56-.038q1.708 0 2.924 1.213Q9.75 13.5 9.75 15.225t-1.216 2.938Q7.318 19.375 5.61 19.375 5.325 19.375 5.05 19.338t-.55-.163v1.325Zm7.5-8.5Z" />
</vector>

Toys And Games icon in SVG

npm install @material-symbols/svg-400

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

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

Toys And Games 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

NameToys And Games
Ligaturetoys_and_games
Code pointU+EFC2
CategoryActivities
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/toys_and_games.svg, toys_and_games-fill.svg
FlutterSymbols.toys_and_games
LicenseApache License 2.0 (© Google LLC)

Keywords

activitiesentertainmentplayactivityroundleisuregamerecreationsportsportsgaminghobbycircles

Related icons