Game Controller Bumper Right icon

The Game Controller Bumper Right icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.

Regular (outlined)

SVG

Filled

SVG

Every size and style

Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.

Regular, 20 px

ic_fluent_game_controller_bumper_right_20_regular.svg

Game Controller Bumper Right icon in React

npm install @fluentui/react-icons

import { GameControllerBumperRight20Regular } from "@fluentui/react-icons";

export function Example() {
  return <GameControllerBumperRight20Regular aria-label="Game Controller Bumper Right" />;
}

Game Controller Bumper Right icon in SVG

npm install @fluentui/svg-icons

import icon from "@fluentui/svg-icons/icons/game_controller_bumper_right_20_regular.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@fluentui/[email protected]/icons/game_controller_bumper_right_20_regular.svg" width="20" height="20" alt="Game Controller Bumper Right">

Game Controller Bumper Right icon in Blazor

Microsoft's Fluent UI Blazor icons package:

dotnet add package Microsoft.FluentUI.AspNetCore.Components.Icons

<FluentIcon Value="@(new Icons.Regular.Size20.GameControllerBumperRight())" />

Game Controller Bumper Right icon in WinUI / WPF

Add FluentSystemIcons-Regular.ttf from Microsoft's repository to your app, then use the glyph:

<!-- WinUI 3 (font in Assets/Fonts) -->
<FontIcon FontFamily="ms-appx:///Assets/Fonts/FluentSystemIcons-Regular.ttf#FluentSystemIcons-Regular" Glyph="&#xF0C77;" FontSize="20" />

<!-- WPF (font in Fonts/, Build Action: Resource) -->
<TextBlock FontFamily="pack://application:,,,/Fonts/#FluentSystemIcons-Regular" Text="&#xF0C77;" FontSize="20" />

Game Controller Bumper Right icon in Icon font

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/microsoft/fluentui-system-icons@9cf8af0f95a555918a60b8147a2f33a6a1248442/fonts/FluentSystemIcons-Regular.css">

<i class="icon-ic_fluent_game_controller_bumper_right_20_regular"></i>

/* or use the code point in your own CSS */
.icon::before {
  font-family: "FluentSystemIcons-Regular";
  content: "\f0c77";
  font-size: 20px;
}

Game Controller Bumper Right icon in Android

// build.gradle
implementation("com.microsoft.design:fluent-system-icons:1.1.341@aar")

<!-- layout XML -->
<ImageView android:src="@drawable/ic_fluent_game_controller_bumper_right_20_regular" />

// Kotlin
R.drawable.ic_fluent_game_controller_bumper_right_20_regular

Game Controller Bumper Right icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .gameControllerBumperRight20Regular)

Game Controller Bumper Right 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='20' height='20' viewBox='0 0 20 20'>…</svg>")

Use the Game Controller Bumper Right icon in React

Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.

npm install @fluentui/react-icons

import { GameControllerBumperRight20Regular, GameControllerBumperRight20Filled } from "@fluentui/react-icons";

export function Example() {
  return <GameControllerBumperRight20Regular aria-label="Game Controller Bumper Right" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_game_controller_bumper_right_20_regular.svg" width="20" height="20" alt="Game Controller Bumper Right">

Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:

<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M5.87 5.12a24 24 0 0 1 4.93.05c1.88.22 3.89.7 5.5 1.7.82.5 1.23 1.4 1.3 2.28l.35 3.67a2 2 0 0 1-2 2.18H5.4a2.5 2.5 0 0 1-2.35-1.65l-.76-2.1a4 4 0 0 1 .9-4.18l1.23-1.24c.38-.39.89-.65 1.45-.7m4.81 1.05a23 23 0 0 0-4.71-.05q-.47.05-.84.41L3.91 7.78a3 3 0 0 0-.68 3.13l.76 2.1c.22.6.78.99 1.41.99h10.56a1 1 0 0 0 1-1.1l-.35-3.66a2 2 0 0 0-.84-1.52 13 13 0 0 0-5.09-1.55M6.5 8c.44 0 1.28-.06 1.98.09.35.07.73.21 1.03.48q.48.44.49 1.18a1.5 1.5 0 0 1-.81 1.38l.73 1.1a.5.5 0 0 1-.84.55l-.9-1.35q-.57.07-1.18.07v1a.5.5 0 0 1-1 0v-4a.5.5 0 0 1 .5-.5m6 0c.27 0 .69.02 1.05.23q.3.15.5.5.18.33.18.77 0 .48-.23.82l-.04.04c.3.25.54.64.54 1.17q0 .53-.27.89-.29.34-.64.45c-.32.11-.66.13-.9.13H11.5a.5.5 0 0 1-.5-.5v-4c0-.28.22-.5.5-.5zm-.5 4h.5q.4.02.75-.07.14-.06.18-.12.06-.03.07-.28c0-.22-.09-.33-.18-.4A.6.6 0 0 0 13 11h-1zM7 9v1.5q.85.01 1.43-.14a1 1 0 0 0 .45-.23q.1-.1.12-.38-.01-.33-.17-.44a1 1 0 0 0-.56-.24c-.4-.08-.84-.08-1.27-.08m5 1h.5c.12 0 .34-.02.5-.1a.4.4 0 0 0 .17-.14.4.4 0 0 0 .06-.26 1 1 0 0 0-.05-.29.3.3 0 0 0-.12-.1 1 1 0 0 0-.56-.1H12z"/></svg>

Details

NameGame Controller Bumper Right
StylesRegular (outlined), Filled
Sizes20 px
Regular (outlined) fileic_fluent_game_controller_bumper_right_20_regular.svg
Filled fileic_fluent_game_controller_bumper_right_20_filled.svg
React (Regular)GameControllerBumperRight20Regular
React (Filled)GameControllerBumperRight20Filled
LicenseMIT (© Microsoft Corporation)

Related icons