mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Implements patch policies #31914 - https://github.com/fleetdm/fleet/pull/40816 - https://github.com/fleetdm/fleet/pull/41248 - https://github.com/fleetdm/fleet/pull/41276 - https://github.com/fleetdm/fleet/pull/40948 - https://github.com/fleetdm/fleet/pull/40837 - https://github.com/fleetdm/fleet/pull/40956 - https://github.com/fleetdm/fleet/pull/41168 - https://github.com/fleetdm/fleet/pull/41171 - https://github.com/fleetdm/fleet/pull/40691 - https://github.com/fleetdm/fleet/pull/41524 - https://github.com/fleetdm/fleet/pull/41674 --------- Co-authored-by: Jonathan Katz <44128041+jkatz01@users.noreply.github.com> Co-authored-by: jkatz01 <yehonatankatz@gmail.com> Co-authored-by: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Co-authored-by: Jahziel Villasana-Espinoza <jahziel@fleetdm.com>
15 lines
547 B
TypeScript
15 lines
547 B
TypeScript
import React from "react";
|
|
|
|
const Calendar = () => {
|
|
return (
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none">
|
|
<rect width="24" height="24" fill="#515774" rx="4" />
|
|
<path
|
|
fill="#fff"
|
|
d="M15 6.038c.31 0 .563.251.563.562v.9h.937A1.5 1.5 0 0 1 18 9v7.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 6 16.5V9a1.5 1.5 0 0 1 1.5-1.5h.938v-.9a.563.563 0 0 1 1.124 0v.9h4.876v-.9c0-.31.251-.562.562-.562m-7.5 5.025V16.5h9v-5.437zm0-1.125h9V9h-9z"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default Calendar;
|