calendar arrow repeat all icon
calendar-arrow-repeat-all-28-regular from Fluent UI System Icons by Microsoft Corporation · 28 Regular · MIT Free for personal and commercial use.
- Name
- calendar-arrow-repeat-all-28-regular
- Set
- Fluent UI System Icons
- Style
- 28 Regular
- Viewbox
- 28×28
- License
- MIT
11 other variants in Fluent UI System Icons
calendar-arrow-repeat-all-16-filledcalendar-arrow-repeat-all-16-regularcalendar-arrow-repeat-all-20-filledcalendar-arrow-repeat-all-20-regularcalendar-arrow-repeat-all-24-filledcalendar-arrow-repeat-all-24-regularcalendar-arrow-repeat-all-28-filledcalendar-arrow-repeat-all-32-filledcalendar-arrow-repeat-all-32-regularcalendar-arrow-repeat-all-48-filledcalendar-arrow-repeat-all-48-regular
Related icons in Fluent UI System Icons
calendar-3-day-16-filledcalendar-add-16-filledcalendar-agenda-16-filledcalendar-agenda-clock-16-filledcalendar-arrow-counterclockwise-16-filledcalendar-arrow-down-20-filledcalendar-arrow-right-16-filledcalendar-assistant-16-filledcalendar-cancel-16-filledcalendar-chat-16-filledcalendar-checkmark-16-filledcalendar-checkmark-center-16-filledcalendar-checkmark-sparkle-16-filledcalendar-clock-16-filledcalendar-data-bar-16-filledcalendar-date-20-filledcalendar-day-16-filledcalendar-edit-16-filledcalendar-empty-16-filledcalendar-error-16-filledcalendar-eye-16-filledcalendar-info-16-filledcalendar-later-24-filledcalendar-link-24-filled
Use the calendar arrow repeat all icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 28 28"><path fill="currentColor" d="M21.75 3A3.25 3.25 0 0 1 25 6.25v10.763a1.74 1.74 0 0 0-1.072.235a1.75 1.75 0 0 0-.428-1.723V9.503h-19V21.75c0 .966.784 1.75 1.75 1.75h6.709a1.75 1.75 0 0 0 2.113.253c-.121.41-.09.856.096 1.247H6.25A3.25 3.25 0 0 1 3 21.75V6.25A3.25 3.25 0 0 1 6.25 3zm0 1.5H6.25A1.75 1.75 0 0 0 4.5 6.25v1.753h19V6.25a1.75 1.75 0 0 0-1.75-1.75m-.97 9.72a.75.75 0 1 0-1.06 1.06l.72.72H17.5a4.5 4.5 0 0 0-3.982 6.597a.75.75 0 1 0 1.326-.7A3 3 0 0 1 17.5 17.5h2.94l-.72.72a.75.75 0 1 0 1.06 1.06l2-2a.75.75 0 0 0 0-1.06zm4.703 4.184a.75.75 0 0 0-1.327.7A3 3 0 0 1 21.5 23.5h-2.94l.723-.723a.75.75 0 0 0-1.06-1.06L16.22 23.72a.75.75 0 0 0 0 1.06l2.003 2.003a.75.75 0 0 0 1.06-1.06L18.561 25H21.5a4.5 4.5 0 0 0 3.983-6.596"/></svg>
React
import type { SVGProps } from "react";
export function FluentCalendarArrowRepeatAll28Regular(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 28 28"><path fill="currentColor" d="M21.75 3A3.25 3.25 0 0 1 25 6.25v10.763a1.74 1.74 0 0 0-1.072.235a1.75 1.75 0 0 0-.428-1.723V9.503h-19V21.75c0 .966.784 1.75 1.75 1.75h6.709a1.75 1.75 0 0 0 2.113.253c-.121.41-.09.856.096 1.247H6.25A3.25 3.25 0 0 1 3 21.75V6.25A3.25 3.25 0 0 1 6.25 3zm0 1.5H6.25A1.75 1.75 0 0 0 4.5 6.25v1.753h19V6.25a1.75 1.75 0 0 0-1.75-1.75m-.97 9.72a.75.75 0 1 0-1.06 1.06l.72.72H17.5a4.5 4.5 0 0 0-3.982 6.597a.75.75 0 1 0 1.326-.7A3 3 0 0 1 17.5 17.5h2.94l-.72.72a.75.75 0 1 0 1.06 1.06l2-2a.75.75 0 0 0 0-1.06zm4.703 4.184a.75.75 0 0 0-1.327.7A3 3 0 0 1 21.5 23.5h-2.94l.723-.723a.75.75 0 0 0-1.06-1.06L16.22 23.72a.75.75 0 0 0 0 1.06l2.003 2.003a.75.75 0 0 0 1.06-1.06L18.561 25H21.5a4.5 4.5 0 0 0 3.983-6.596"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 28 28"><path fill="currentColor" d="M21.75 3A3.25 3.25 0 0 1 25 6.25v10.763a1.74 1.74 0 0 0-1.072.235a1.75 1.75 0 0 0-.428-1.723V9.503h-19V21.75c0 .966.784 1.75 1.75 1.75h6.709a1.75 1.75 0 0 0 2.113.253c-.121.41-.09.856.096 1.247H6.25A3.25 3.25 0 0 1 3 21.75V6.25A3.25 3.25 0 0 1 6.25 3zm0 1.5H6.25A1.75 1.75 0 0 0 4.5 6.25v1.753h19V6.25a1.75 1.75 0 0 0-1.75-1.75m-.97 9.72a.75.75 0 1 0-1.06 1.06l.72.72H17.5a4.5 4.5 0 0 0-3.982 6.597a.75.75 0 1 0 1.326-.7A3 3 0 0 1 17.5 17.5h2.94l-.72.72a.75.75 0 1 0 1.06 1.06l2-2a.75.75 0 0 0 0-1.06zm4.703 4.184a.75.75 0 0 0-1.327.7A3 3 0 0 1 21.5 23.5h-2.94l.723-.723a.75.75 0 0 0-1.06-1.06L16.22 23.72a.75.75 0 0 0 0 1.06l2.003 2.003a.75.75 0 0 0 1.06-1.06L18.561 25H21.5a4.5 4.5 0 0 0 3.983-6.596"/></svg> </template>
CSS
.icon-calendar-arrow-repeat-all-28-regular {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2028%2028%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M21.75%203A3.25%203.25%200%200%201%2025%206.25v10.763a1.74%201.74%200%200%200-1.072.235a1.75%201.75%200%200%200-.428-1.723V9.503h-19V21.75c0%20.966.784%201.75%201.75%201.75h6.709a1.75%201.75%200%200%200%202.113.253c-.121.41-.09.856.096%201.247H6.25A3.25%203.25%200%200%201%203%2021.75V6.25A3.25%203.25%200%200%201%206.25%203zm0%201.5H6.25A1.75%201.75%200%200%200%204.5%206.25v1.753h19V6.25a1.75%201.75%200%200%200-1.75-1.75m-.97%209.72a.75.75%200%201%200-1.06%201.06l.72.72H17.5a4.5%204.5%200%200%200-3.982%206.597a.75.75%200%201%200%201.326-.7A3%203%200%200%201%2017.5%2017.5h2.94l-.72.72a.75.75%200%201%200%201.06%201.06l2-2a.75.75%200%200%200%200-1.06zm4.703%204.184a.75.75%200%200%200-1.327.7A3%203%200%200%201%2021.5%2023.5h-2.94l.723-.723a.75.75%200%200%200-1.06-1.06L16.22%2023.72a.75.75%200%200%200%200%201.06l2.003%202.003a.75.75%200%200%200%201.06-1.06L18.561%2025H21.5a4.5%204.5%200%200%200%203.983-6.596%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2028%2028%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M21.75%203A3.25%203.25%200%200%201%2025%206.25v10.763a1.74%201.74%200%200%200-1.072.235a1.75%201.75%200%200%200-.428-1.723V9.503h-19V21.75c0%20.966.784%201.75%201.75%201.75h6.709a1.75%201.75%200%200%200%202.113.253c-.121.41-.09.856.096%201.247H6.25A3.25%203.25%200%200%201%203%2021.75V6.25A3.25%203.25%200%200%201%206.25%203zm0%201.5H6.25A1.75%201.75%200%200%200%204.5%206.25v1.753h19V6.25a1.75%201.75%200%200%200-1.75-1.75m-.97%209.72a.75.75%200%201%200-1.06%201.06l.72.72H17.5a4.5%204.5%200%200%200-3.982%206.597a.75.75%200%201%200%201.326-.7A3%203%200%200%201%2017.5%2017.5h2.94l-.72.72a.75.75%200%201%200%201.06%201.06l2-2a.75.75%200%200%200%200-1.06zm4.703%204.184a.75.75%200%200%200-1.327.7A3%203%200%200%201%2021.5%2023.5h-2.94l.723-.723a.75.75%200%200%200-1.06-1.06L16.22%2023.72a.75.75%200%200%200%200%201.06l2.003%202.003a.75.75%200%200%200%201.06-1.06L18.561%2025H21.5a4.5%204.5%200%200%200%203.983-6.596%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/calendar-arrow-repeat-all-28-regular.svg?color=%231a73e8&size=48