Next Frame icon
Used to jump to next item. Paired with Previous Frame. The Next Frame 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 Next Frame 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 { NextFrame24Regular, NextFrame24Filled } from "@fluentui/react-icons";
export function Example() {
return <NextFrame24Regular aria-label="Next Frame" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_next_frame_24_regular.svg" width="24" height="24" alt="Next Frame"> 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="M5.5 3.75C5.5 3.33579 5.16421 3 4.75 3C4.33579 3 4 3.33579 4 3.75V20.25C4 20.6642 4.33579 21 4.75 21C5.16421 21 5.5 20.6642 5.5 20.25V3.75ZM11.7392 3.30937C10.5778 2.51363 9 3.34519 9 4.753V19.248C9 20.6613 10.5889 21.4917 11.7492 20.6847L22.2477 13.3831C23.253 12.6839 23.2478 11.1949 22.2376 10.5028L11.7392 3.30937ZM10.5 4.753C10.5 4.55189 10.7254 4.43309 10.8913 4.54677L21.3898 11.7402C21.5341 11.8391 21.5348 12.0518 21.3912 12.1517L10.8927 19.4532C10.727 19.5685 10.5 19.4499 10.5 19.248V4.753Z" 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/next_frame_24_regular.svg";Details
| Name | Next Frame |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_next_frame_24_regular.svg |
| Filled file | ic_fluent_next_frame_24_filled.svg |
| React components | NextFrame24Regular, NextFrame24Filled |
| License | MIT (© Microsoft Corporation) |