Arrow Previous icon
Used for skipping back a known block of content. The Arrow Previous 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 Arrow Previous 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 { ArrowPrevious24Regular, ArrowPrevious24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowPrevious24Regular aria-label="Arrow Previous" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_previous_24_regular.svg" width="24" height="24" alt="Arrow Previous"> 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.75 3C5.3703 3 5.05651 3.28215 5.00685 3.64823L5 3.75V20.25C5 20.6642 5.33579 21 5.75 21C6.1297 21 6.44349 20.7178 6.49315 20.3518L6.5 20.25V3.75C6.5 3.33579 6.16421 3 5.75 3ZM18.7803 3.21967C18.5141 2.9534 18.0974 2.9292 17.8038 3.14705L17.7197 3.21967L9.46967 11.4697C9.2034 11.7359 9.1792 12.1526 9.39705 12.4462L9.46967 12.5303L17.7197 20.7803C18.0126 21.0732 18.4874 21.0732 18.7803 20.7803C19.0466 20.5141 19.0708 20.0974 18.8529 19.8038L18.7803 19.7197L11.0607 12L18.7803 4.28033C19.0732 3.98744 19.0732 3.51256 18.7803 3.21967Z" 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/arrow_previous_24_regular.svg";Details
| Name | Arrow Previous |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_previous_24_regular.svg |
| Filled file | ic_fluent_arrow_previous_24_filled.svg |
| React components | ArrowPrevious24Regular, ArrowPrevious24Filled |
| License | MIT (© Microsoft Corporation) |