Keyboard Tab icon

Used to represent various keys on keyboard scenarios. The Keyboard Tab 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.

Regular (outlined)

SVG

Filled

SVG

Use the Keyboard Tab 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 { KeyboardTab24Regular, KeyboardTab24Filled } from "@fluentui/react-icons";

export function Example() {
  return <KeyboardTab24Regular aria-label="Keyboard Tab" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_keyboard_tab_24_regular.svg" width="24" height="24" alt="Keyboard Tab">

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="M18.0303 11.4697L11.5303 4.96967C11.2374 4.67678 10.7626 4.67678 10.4697 4.96967C10.2034 5.23594 10.1792 5.6526 10.3971 5.94621L10.4697 6.03033L15.69 11.25H3.75C3.3703 11.25 3.05651 11.5322 3.00685 11.8982L3 12C3 12.3797 3.28215 12.6935 3.64823 12.7432L3.75 12.75H15.69L10.4697 17.9697C10.2034 18.2359 10.1792 18.6526 10.3971 18.9462L10.4697 19.0303C10.7359 19.2966 11.1526 19.3208 11.4462 19.1029L11.5303 19.0303L18.0303 12.5303C18.2966 12.2641 18.3208 11.8474 18.1029 11.5538L18.0303 11.4697L11.5303 4.96967L18.0303 11.4697ZM21 18.5V5.5C21 5.08579 20.6642 4.75 20.25 4.75C19.8358 4.75 19.5 5.08579 19.5 5.5V18.5C19.5 18.9142 19.8358 19.25 20.25 19.25C20.6642 19.25 21 18.9142 21 18.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/keyboard_tab_24_regular.svg";

Details

NameKeyboard Tab
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_keyboard_tab_24_regular.svg
Filled fileic_fluent_keyboard_tab_24_filled.svg
React componentsKeyboardTab24Regular, KeyboardTab24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

keyboardtypekeydeviceanalogarrow

Related icons