Calendar Arrow Right icon
Used in calendar scenarios. The Calendar 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 Calendar 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 { CalendarArrowRight24Regular, CalendarArrowRight24Filled } from "@fluentui/react-icons";
export function Example() {
return <CalendarArrowRight24Regular aria-label="Calendar Arrow Right" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_calendar_arrow_right_24_regular.svg" width="24" height="24" alt="Calendar 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="M21 6C21 4.34315 19.6569 3 18 3H6C4.34315 3 3 4.34315 3 6V18C3 19.6569 4.34315 21 6 21H12.0218C11.7253 20.5368 11.4858 20.0335 11.3135 19.5H6C5.17157 19.5 4.5 18.8284 4.5 18V8.5H19.5V11.3135C20.0335 11.4858 20.5368 11.7253 21 12.0218V6ZM6 4.5H18C18.8284 4.5 19.5 5.17157 19.5 6V7H4.5V6C4.5 5.17157 5.17157 4.5 6 4.5ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM17.6464 15.3536C17.4512 15.1583 17.4512 14.8417 17.6464 14.6464C17.8417 14.4512 18.1583 14.4512 18.3536 14.6464L20.8536 17.1464C21.0488 17.3417 21.0488 17.6583 20.8536 17.8536L18.3536 20.3536C18.1583 20.5488 17.8417 20.5488 17.6464 20.3536C17.4512 20.1583 17.4512 19.8417 17.6464 19.6464L19.2929 18H14.5C14.2239 18 14 17.7761 14 17.5C14 17.2239 14.2239 17 14.5 17H19.2929L17.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/calendar_arrow_right_24_regular.svg";Details
| Name | Calendar Arrow Right |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_calendar_arrow_right_24_regular.svg |
| Filled file | ic_fluent_calendar_arrow_right_24_filled.svg |
| React components | CalendarArrowRight24Regular, CalendarArrowRight24Filled |
| License | MIT (© Microsoft Corporation) |