Xbox Console icon
Used to represent the Xbox Series X, but okay to use for general xbox console. The Xbox Console icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Xbox Console 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 { XboxConsole24Regular, XboxConsole24Filled } from "@fluentui/react-icons";
export function Example() {
return <XboxConsole24Regular aria-label="Xbox Console" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_xbox_console_24_regular.svg" width="24" height="24" alt="Xbox Console"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 5.75C9.5 6.16421 9.16421 6.5 8.75 6.5C8.33579 6.5 8 6.16421 8 5.75C8 5.33579 8.33579 5 8.75 5C9.16421 5 9.5 5.33579 9.5 5.75ZM5.75 2C5.33579 2 5 2.33579 5 2.75V21.25C5 21.6642 5.33579 22 5.75 22H18.25C18.6642 22 19 21.6642 19 21.25V2.75C19 2.33579 18.6642 2 18.25 2H5.75ZM9.5 20.5V11.75C9.5 11.3358 9.16421 11 8.75 11C8.33579 11 8 11.3358 8 11.75V20.5H6.5V3.5H17.5V20.5H9.5Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/xbox_console_24_regular.svg";Details
| Name | Xbox Console |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_xbox_console_24_regular.svg |
| Filled file | ic_fluent_xbox_console_24_filled.svg |
| React components | XboxConsole24Regular, XboxConsole24Filled |
| License | MIT (© Microsoft Corporation) |