Shifts Team icon
Used in frontline scheduling scenarios. The Shifts Team 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 Team 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 { ShiftsTeam24Regular, ShiftsTeam24Filled } from "@fluentui/react-icons";
export function Example() {
return <ShiftsTeam24Regular aria-label="Shifts Team" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_shifts_team_24_regular.svg" width="24" height="24" alt="Shifts Team"> 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="M17.75 3C19.5449 3 21 4.45507 21 6.25V17.75C21 19.5449 19.5449 21 17.75 21H12.7595C12.9256 20.618 13.0042 20.2128 13.0042 19.8125C13.0042 19.7067 12.9971 19.6024 12.9833 19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V6.25C19.5 5.2835 18.7165 4.5 17.75 4.5H6.25C5.2835 4.5 4.5 5.2835 4.5 6.25V11.5095C3.9505 11.5513 3.4392 11.7297 3 12.0109V6.25C3 4.45507 4.45507 3 6.25 3H17.75ZM11.75 6C12.1297 6 12.4435 6.28215 12.4932 6.64823L12.5 6.75V12H16.2483C16.6625 12 16.9983 12.3358 16.9983 12.75C16.9983 13.1297 16.7161 13.4435 16.35 13.4932L16.2483 13.5H11.75C11.3703 13.5 11.0565 13.2178 11.0068 12.8518L11 12.75V6.75C11 6.33579 11.3358 6 11.75 6ZM4.75 17C5.99264 17 7 15.9926 7 14.75C7 13.5074 5.99264 12.5 4.75 12.5C3.50736 12.5 2.5 13.5074 2.5 14.75C2.5 15.9926 3.50736 17 4.75 17ZM4.75 23C7.42857 23 8.5 21.4315 8.5 19.875C8.5 18.8395 7.78046 18 6.89286 18H2.60714C1.71954 18 1 18.8395 1 19.875C1 21.4374 2.07143 23 4.75 23ZM11.5 15.75C11.5 16.7165 10.7165 17.5 9.75 17.5C8.7835 17.5 8 16.7165 8 15.75C8 14.7835 8.7835 14 9.75 14C10.7165 14 11.5 14.7835 11.5 15.75ZM8.91591 21.9994C9.31989 21.3397 9.4984 20.5948 9.4984 19.875C9.4984 19.3993 9.38581 18.9236 9.17795 18.5H10.7185C11.4286 18.5 12.0042 19.0876 12.0042 19.8125C12.0042 20.9021 11.1471 22 9.0042 22C8.97453 22 8.9451 21.9998 8.91591 21.9994Z" 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_team_24_regular.svg";Details
| Name | Shifts Team |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_shifts_team_24_regular.svg |
| Filled file | ic_fluent_shifts_team_24_filled.svg |
| React components | ShiftsTeam24Regular, ShiftsTeam24Filled |
| License | MIT (© Microsoft Corporation) |