From cc6477ca3d06aa935c88b1037a2b35181bc32c75 Mon Sep 17 00:00:00 2001 From: lukasbicus Date: Fri, 15 Nov 2024 13:26:23 +0100 Subject: [PATCH] Add some icons. --- app/lib/shared.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/lib/shared.ts b/app/lib/shared.ts index 35baed4..894126e 100644 --- a/app/lib/shared.ts +++ b/app/lib/shared.ts @@ -14,6 +14,7 @@ import { IconPaperclip, IconPaw, IconPlane, + IconShirt, IconShoppingCart, IconTheater, IconTicket, @@ -56,14 +57,16 @@ export enum CardIcon { Office = 'Office', Gaming = 'Gaming', Entertainment = 'Entertainment', + Clothes = 'Clothes', } export const iconsMap = { [CardIcon.Grocery]: IconShoppingCart, + [CardIcon.Clothes]: IconShirt, [CardIcon.Retail]: IconPaperBag, [CardIcon.Pharmacy]: IconFirstAidKit, - [CardIcon.Gas]: IconGasStation, [CardIcon.Restaurant]: IconToolsKitchen2, [CardIcon.Cafes]: IconCoffee, + [CardIcon.Gas]: IconGasStation, [CardIcon.Accommodation]: IconBed, [CardIcon.Airlines]: IconPlane, [CardIcon.Car]: IconCar,