Previous Frame icon
Used to jump to next item. Paired with Next Frame. The Previous 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 Previous 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 { PreviousFrame24Regular, PreviousFrame24Filled } from "@fluentui/react-icons";
export function Example() {
return <PreviousFrame24Regular aria-label="Previous Frame" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_previous_frame_24_regular.svg" width="24" height="24" alt="Previous 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="M18.5004 3.75C18.5004 3.33579 18.8362 3 19.2504 3C19.6646 3 20.0004 3.33579 20.0004 3.75V20.25C20.0004 20.6642 19.6646 21 19.2504 21C18.8362 21 18.5004 20.6642 18.5004 20.25V3.75ZM12.2613 3.30937C13.4226 2.51363 15.0004 3.34519 15.0004 4.753V19.248C15.0004 20.6613 13.4116 21.4917 12.2512 20.6847L1.75275 13.3831C0.747431 12.6839 0.752624 11.1949 1.7628 10.5028L12.2613 3.30937ZM13.5004 4.753C13.5004 4.55189 13.275 4.43309 13.1091 4.54677L2.61065 11.7402C2.46634 11.8391 2.46559 12.0518 2.60921 12.1517L13.1077 19.4532C13.2734 19.5685 13.5004 19.4499 13.5004 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/previous_frame_24_regular.svg";Details
| Name | Previous Frame |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_previous_frame_24_regular.svg |
| Filled file | ic_fluent_previous_frame_24_filled.svg |
| React components | PreviousFrame24Regular, PreviousFrame24Filled |
| License | MIT (© Microsoft Corporation) |