Checkbox Arrow Right icon
Used for toggle selection states. The Checkbox Arrow 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 Checkbox Arrow 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 { CheckboxArrowRight24Regular, CheckboxArrowRight24Filled } from "@fluentui/react-icons";
export function Example() {
return <CheckboxArrowRight24Regular aria-label="Checkbox Arrow Right" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_checkbox_arrow_right_24_regular.svg" width="24" height="24" alt="Checkbox Arrow 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="M5.25 2C3.45507 2 2 3.45507 2 5.25V16.75C2 18.5449 3.45507 20 5.25 20H11.4982C11.3004 19.5258 11.1572 19.0232 11.0764 18.5H5.25C4.2835 18.5 3.5 17.7165 3.5 16.75V5.25C3.5 4.2835 4.2835 3.5 5.25 3.5H16.75C17.7165 3.5 18.5 4.2835 18.5 5.25V11.0764C19.0232 11.1572 19.5258 11.3004 20 11.4982V5.25C20 3.45507 18.5449 2 16.75 2H5.25ZM16.28 8.28064C16.5731 7.98791 16.5734 7.51304 16.2806 7.21998C15.9879 6.92691 15.513 6.92664 15.22 7.21936L8.99658 13.4356L6.78084 11.2197C6.48795 10.9268 6.01308 10.9268 5.72018 11.2196C5.42727 11.5125 5.42726 11.9874 5.72014 12.2803L8.46591 15.0262C8.75868 15.319 9.23333 15.3192 9.52628 15.0266L16.28 8.28064ZM17.5 12C20.5376 12 23 14.4624 23 17.5C23 20.5376 20.5376 23 17.5 23C14.4624 23 12 20.5376 12 17.5C12 14.4624 14.4624 12 17.5 12ZM14.5 17C14.2239 17 14 17.2239 14 17.5C14 17.7761 14.2239 18 14.5 18H19.2929L17.6464 19.6464C17.4512 19.8417 17.4512 20.1583 17.6464 20.3536C17.8417 20.5488 18.1583 20.5488 18.3536 20.3536L20.8536 17.8536C21.0488 17.6583 21.0488 17.3417 20.8536 17.1464L18.3536 14.6464C18.1583 14.4512 17.8417 14.4512 17.6464 14.6464C17.4512 14.8417 17.4512 15.1583 17.6464 15.3536L19.2929 17H14.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/checkbox_arrow_right_24_regular.svg";Details
| Name | Checkbox Arrow Right |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_checkbox_arrow_right_24_regular.svg |
| Filled file | ic_fluent_checkbox_arrow_right_24_filled.svg |
| React components | CheckboxArrowRight24Regular, CheckboxArrowRight24Filled |
| License | MIT (© Microsoft Corporation) |