Skip to content

Commit

Permalink
Add missing info pill desc
Browse files Browse the repository at this point in the history
  • Loading branch information
mathildehaugum committed Nov 8, 2023
1 parent bd87b46 commit 4040de8
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion frontend/src/components/InfoPillDescriptions.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
import InfoPill from "@/components/InfoPill";
import { AlertTriangle, Calendar, Coffee, FileText, Sun } from "react-feather";
import {
AlertTriangle,
Briefcase,
Calendar,
Coffee,
FileText,
Moon,
Sun,
} from "react-feather";

export default function InfoPillDescriptions() {
return (
<div className="mt-8 flex flex-row gap-2">
<InfoPill
text={"Booking"}
colors="bg-primary_l5 text-black"
icon={<Briefcase size="12" />}
/>
<InfoPill
text={"Ledig tid"}
colors="bg-free_light text-free_dark"
Expand All @@ -29,6 +42,11 @@ export default function InfoPillDescriptions() {
colors="bg-overbooking_dark text-overbooking_light"
icon={<AlertTriangle size="12" />}
/>
<InfoPill
text={"Fravær"}
colors="bg-absence_light text-absence_dark"
icon={<Moon size="12" />}
/>
</div>
);
}

0 comments on commit 4040de8

Please sign in to comment.