Shifts Checkmark icon
Used in frontline scheduling scenarios. The Shifts Checkmark 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 Shifts Checkmark 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 { ShiftsCheckmark24Regular, ShiftsCheckmark24Filled } from "@fluentui/react-icons";
export function Example() {
return <ShiftsCheckmark24Regular aria-label="Shifts Checkmark" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_shifts_checkmark_24_regular.svg" width="24" height="24" alt="Shifts Checkmark"> 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="M4.5 6.25C4.5 5.2835 5.2835 4.5 6.25 4.5H17.75C18.7165 4.5 19.5 5.2835 19.5 6.25V17.75C19.5 18.7165 18.7165 19.5 17.75 19.5H12.6865C12.5142 20.0335 12.2747 20.5368 11.9782 21H17.75C19.5449 21 21 19.5449 21 17.75V6.25C21 4.45507 19.5449 3 17.75 3H6.25C4.45507 3 3 4.45507 3 6.25V12.0218C3.46321 11.7253 3.96653 11.4858 4.5 11.3135V6.25ZM12.5 6.75C12.5 6.33579 12.1642 6 11.75 6C11.3358 6 11 6.33579 11 6.75V12.75C11 13.1642 11.3358 13.5 11.75 13.5H16.25C16.6642 13.5 17 13.1642 17 12.75C17 12.3358 16.6642 12 16.25 12H12.5V6.75ZM12 17.5C12 20.5376 9.53757 23 6.5 23C3.46243 23 1 20.5376 1 17.5C1 14.4624 3.46243 12 6.5 12C9.53757 12 12 14.4624 12 17.5ZM8.85355 15.6464C8.65829 15.4512 8.34171 15.4512 8.14645 15.6464L5.5 18.2929L4.60355 17.3964C4.40829 17.2012 4.09171 17.2012 3.89645 17.3964C3.70118 17.5917 3.70118 17.9083 3.89645 18.1036L5.14645 19.3536C5.34171 19.5488 5.65829 19.5488 5.85355 19.3536L8.85355 16.3536C9.04882 16.1583 9.04882 15.8417 8.85355 15.6464Z" 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/shifts_checkmark_24_regular.svg";Details
| Name | Shifts Checkmark |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_shifts_checkmark_24_regular.svg |
| Filled file | ic_fluent_shifts_checkmark_24_filled.svg |
| React components | ShiftsCheckmark24Regular, ShiftsCheckmark24Filled |
| License | MIT (© Microsoft Corporation) |