Sports Basketball icon

Sports Basketball 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.

GradeOptical size

Outlined, unfilled, weight 400

sports_basketball_outlined_fill0_wght400.svg

Sports Basketball 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=sports_basketball" />

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

Sports Basketball icon in React

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

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

Sports Basketball 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 SportsBasketballOutlinedIcon from "@mui/icons-material/SportsBasketballOutlined";

<SportsBasketballOutlinedIcon />

Sports Basketball icon in Vue

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

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

Sports Basketball icon in Angular

With Angular Material and the font from the HTML tab:

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

Sports Basketball 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.sports_basketball, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Sports Basketball icon in Android

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

<!-- res/drawable/ic_sports_basketball.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.525 11.25h3.425q-.175-1.2-.7-2.262T4.95 7.15q-.575 .875-.975 1.9t-.45 2.2Zm13.525 0h3.425q-.05-1.175-.45-2.2t-.975-1.9q-.85 .85-1.337 1.875T17.05 11.25ZM4.95 16.825q.85-.85 1.338-1.862T6.95 12.75H3.525q.05 1.175 .45 2.188t.975 1.887Zm14.1 0q.575-.875 .975-1.887t.45-2.188H17.05q.175 1.2 .663 2.213T19.05 16.825ZM8.475 11.25h2.775v-7.725q-1.55 .175-2.887 .8T5.95 6q1.025 1.025 1.675 2.375t.85 2.875Zm4.275 0h2.775q.2-1.525 .863-2.875t1.687-2.375q-1.075-1.05-2.425-1.675t-2.9-.8v7.725Zm-1.5 9.225v-7.725H8.475q-.2 1.525-.85 2.863T5.95 17.975q1.075 1.05 2.35 1.688T11.25 20.475Zm1.5 0q1.675-.175 2.963-.812T18.075 17.975q-1.025-1.025-1.687-2.362T15.525 12.75H12.75v7.725Zm-.75-8.35Zm0 9.875q-2.075 0-3.9-.787T4.925 19.075q-1.35-1.35-2.137-3.175T2 12q0-2.075 .788-3.9T4.925 4.925q1.35-1.35 3.175-2.137T12 2q2.075 0 3.9 .788T19.075 4.925q1.35 1.35 2.138 3.175T22 12q0 2.075-.787 3.9T19.075 19.075q-1.35 1.35-3.175 2.138T12 22Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_sports_basketball), contentDescription = "Sports Basketball")

Sports Basketball icon in SVG

npm install @material-symbols/svg-400

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

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

Sports Basketball 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

NameSports Basketball
Ligaturesports_basketball
Code pointU+EA26
CategoryActivities
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/sports_basketball.svg, sports_basketball-fill.svg
FlutterSymbols.sports_basketball (Material Icons: Icons.sports_basketball)
MUI@mui/icons-material/SportsBasketball
LicenseApache License 2.0 (© Google LLC)

Keywords

activitieslinesentertainmentsocialplayactivityroundgame

Related icons