Desktop Arrow Right icon
Used to represent stationary work stations, large screen devices, office, and actions in general computer scenarios. The Desktop Arrow Right 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 Desktop Arrow 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 { DesktopArrowRight24Regular, DesktopArrowRight24Filled } from "@fluentui/react-icons";
export function Example() {
return <DesktopArrowRight24Regular aria-label="Desktop Arrow Right" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_desktop_arrow_right_24_regular.svg" width="24" height="24" alt="Desktop Arrow Right"> 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="M23 6.5C23 9.53757 20.5376 12 17.5 12C14.4624 12 12 9.53757 12 6.5C12 3.46243 14.4624 1 17.5 1C20.5376 1 23 3.46243 23 6.5ZM14.5 6C14.2239 6 14 6.22386 14 6.5C14 6.77614 14.2239 7 14.5 7L19.2929 7L17.6464 8.64645C17.4512 8.84171 17.4512 9.15829 17.6464 9.35355C17.8417 9.54881 18.1583 9.54882 18.3536 9.35355L20.8536 6.85355C21.0488 6.65829 21.0488 6.34171 20.8536 6.14645L18.3536 3.64645C18.1583 3.45118 17.8417 3.45118 17.6464 3.64645C17.4512 3.84171 17.4512 4.15829 17.6464 4.35355L19.2929 6L14.5 6ZM20.4988 15.7518V12.2684C21.0498 11.9814 21.5545 11.6177 21.9988 11.1915V15.7518C21.9988 16.9427 21.0737 17.9175 19.9029 17.9967L19.7488 18.0018L15.499 18.0016V20.4996L17.25 20.5C17.6642 20.5 18 20.8358 18 21.25C18 21.6297 17.7178 21.9435 17.3518 21.9932L17.25 22H6.75C6.33579 22 6 21.6642 6 21.25C6 20.8703 6.28215 20.5565 6.64823 20.5069L6.75 20.5L8.499 20.4996V18.0016L4.25 18.0018C3.05914 18.0018 2.08436 17.0767 2.00519 15.9059L2 15.7518V5.24957C2 4.05871 2.92516 3.08393 4.09595 3.00476L4.25 2.99957H12.0221C11.7255 3.46278 11.486 3.9661 11.3136 4.49957H4.25C3.8703 4.49957 3.55651 4.78173 3.50685 5.1478L3.5 5.24957V15.7518C3.5 16.1315 3.78215 16.4453 4.14823 16.495L4.25 16.5018H19.7488C20.1285 16.5018 20.4423 16.2197 20.492 15.8536L20.4988 15.7518ZM13.998 18.0016H9.998L9.999 20.5H13.999L13.998 18.0016Z" 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/desktop_arrow_right_24_regular.svg";Details
| Name | Desktop Arrow Right |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_desktop_arrow_right_24_regular.svg |
| Filled file | ic_fluent_desktop_arrow_right_24_filled.svg |
| React components | DesktopArrowRight24Regular, DesktopArrowRight24Filled |
| License | MIT (© Microsoft Corporation) |