Arrow Hook Down Right icon
Used for undo/redo scenarios. Contains directional variants. The Arrow Hook Down Right 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 Hook Down Right 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 { ArrowHookDownRight24Regular, ArrowHookDownRight24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowHookDownRight24Regular aria-label="Arrow Hook Down Right" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_hook_down_right_24_regular.svg" width="24" height="24" alt="Arrow Hook Down Right"> 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="M10.5 5.5H16C16.4142 5.5 16.75 5.16421 16.75 4.75C16.75 4.33579 16.4142 4 16 4H10.5C6.91015 4 4 6.91015 4 10.5C4 14.0899 6.91015 17 10.5 17H16.4503L13.8336 19.6168C13.5407 19.9097 13.5407 20.3845 13.8336 20.6774C14.1264 20.9703 14.6013 20.9703 14.8942 20.6774L18.7765 16.7951C18.8762 16.6955 18.9419 16.5748 18.9738 16.4473C18.9909 16.3845 19 16.3183 19 16.25C19 16.0371 18.9113 15.8449 18.7688 15.7084L14.8887 11.8283C14.5958 11.5354 14.121 11.5354 13.8281 11.8283C13.5352 12.1212 13.5352 12.5961 13.8281 12.889L16.4391 15.5H10.5C7.73858 15.5 5.5 13.2614 5.5 10.5C5.5 7.73858 7.73858 5.5 10.5 5.5Z" 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_hook_down_right_24_regular.svg";Details
| Name | Arrow Hook Down Right |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_hook_down_right_24_regular.svg |
| Filled file | ic_fluent_arrow_hook_down_right_24_filled.svg |
| React components | ArrowHookDownRight24Regular, ArrowHookDownRight24Filled |
| License | MIT (© Microsoft Corporation) |