Slash Forward icon
Used in contextual insert scenarios. The Slash Forward 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 Slash Forward 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 { SlashForward24Regular, SlashForward24Filled } from "@fluentui/react-icons";
export function Example() {
return <SlashForward24Regular aria-label="Slash Forward" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_slash_forward_24_regular.svg" width="24" height="24" alt="Slash Forward"> 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="M15.4988 2.0424C15.8896 2.1797 16.0951 2.60781 15.9578 2.99861L9.4578 21.4986C9.32049 21.8894 8.89238 22.0949 8.50159 21.9576C8.1108 21.8203 7.9053 21.3922 8.04261 21.0014L14.5426 2.50138C14.6799 2.11058 15.108 1.90509 15.4988 2.0424Z" 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/slash_forward_24_regular.svg";Details
| Name | Slash Forward |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_slash_forward_24_regular.svg |
| Filled file | ic_fluent_slash_forward_24_filled.svg |
| React components | SlashForward24Regular, SlashForward24Filled |
| License | MIT (© Microsoft Corporation) |