Keyboard Shift Uppercase icon
Used to represent various keys on keyboard scenarios. The Keyboard Shift Uppercase 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 Keyboard Shift Uppercase 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 { KeyboardShiftUppercase24Regular, KeyboardShiftUppercase24Filled } from "@fluentui/react-icons";
export function Example() {
return <KeyboardShiftUppercase24Regular aria-label="Keyboard Shift Uppercase" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_keyboard_shift_uppercase_24_regular.svg" width="24" height="24" alt="Keyboard Shift Uppercase"> 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="M13.3211 2.60317C12.6234 1.79894 11.3752 1.79894 10.6774 2.60317L2.43203 12.107C1.449 13.24 2.25383 15.0038 3.75388 15.0038H6.99989V17.2501C6.99989 18.2165 7.78339 19.0001 8.74989 19.0001H15.2499C16.2164 19.0001 16.9999 18.2165 16.9999 17.2501V15.0038H20.2447C21.7448 15.0038 22.5496 13.24 21.5666 12.107L13.3211 2.60317ZM11.8105 3.58617C11.9101 3.47128 12.0885 3.47128 12.1881 3.58617L20.4335 13.09C20.574 13.2518 20.459 13.5038 20.2447 13.5038H16.2499C15.8357 13.5038 15.4999 13.8396 15.4999 14.2538V17.2501C15.4999 17.3881 15.388 17.5001 15.2499 17.5001H8.74989C8.61182 17.5001 8.49989 17.3881 8.49989 17.2501V14.2538C8.49989 13.8396 8.1641 13.5038 7.74989 13.5038H3.75388C3.53959 13.5038 3.42462 13.2518 3.56505 13.09L11.8105 3.58617ZM7.74989 20.5001C7.33568 20.5001 6.99989 20.8358 6.99989 21.2501C6.99989 21.6643 7.33568 22.0001 7.74989 22.0001H16.2499C16.6641 22.0001 16.9999 21.6643 16.9999 21.2501C16.9999 20.8358 16.6641 20.5001 16.2499 20.5001H7.74989Z" 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_shift_uppercase_24_regular.svg";Details
| Name | Keyboard Shift Uppercase |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_keyboard_shift_uppercase_24_regular.svg |
| Filled file | ic_fluent_keyboard_shift_uppercase_24_filled.svg |
| React components | KeyboardShiftUppercase24Regular, KeyboardShiftUppercase24Filled |
| License | MIT (© Microsoft Corporation) |