Square Arrow Forward icon
Used to represent general UI, app tile, content or other general layouts. The Square Arrow 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 Square Arrow 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 { SquareArrowForward24Regular, SquareArrowForward24Filled } from "@fluentui/react-icons";
export function Example() {
return <SquareArrowForward24Regular aria-label="Square Arrow Forward" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_square_arrow_forward_24_regular.svg" width="24" height="24" alt="Square Arrow 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="M3 6.25C3 4.45507 4.45507 3 6.25 3H17.75C19.5449 3 21 4.45507 21 6.25V12.0218C20.5368 11.7253 20.0335 11.4858 19.5 11.3135V6.25C19.5 5.2835 18.7165 4.5 17.75 4.5H6.25C5.2835 4.5 4.5 5.2835 4.5 6.25V17.75C4.5 18.7165 5.2835 19.5 6.25 19.5H11.3135C11.4858 20.0335 11.7253 20.5368 12.0218 21H6.25C4.45507 21 3 19.5449 3 17.75V6.25ZM12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5ZM18.6464 15.3536C18.4512 15.1583 18.4512 14.8417 18.6464 14.6464C18.8417 14.4512 19.1583 14.4512 19.3536 14.6464L20.8536 16.1464C21.0488 16.3417 21.0488 16.6583 20.8536 16.8536L19.3536 18.3536C19.1583 18.5488 18.8417 18.5488 18.6464 18.3536C18.4512 18.1583 18.4512 17.8417 18.6464 17.6464L19.2929 17H17.25C16.0074 17 15 18.0074 15 19.25V19.5C15 19.7761 14.7761 20 14.5 20C14.2239 20 14 19.7761 14 19.5V19.25C14 17.4551 15.4551 16 17.25 16H19.2929L18.6464 15.3536Z" 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/square_arrow_forward_24_regular.svg";Details
| Name | Square Arrow Forward |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_square_arrow_forward_24_regular.svg |
| Filled file | ic_fluent_square_arrow_forward_24_filled.svg |
| React components | SquareArrowForward24Regular, SquareArrowForward24Filled |
| License | MIT (© Microsoft Corporation) |