From 29d048ffd472d8a3e405a575a9616d0a9c6cb3f2 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sat, 7 Feb 2026 14:09:56 +0000 Subject: [PATCH] Improve icons --- frontend/src/components/ui/icons/EyeIcon.tsx | 6 ++--- .../src/components/ui/icons/LocationIcon.tsx | 26 +++++++++++++++++++ frontend/src/components/ui/icons/index.ts | 1 + 3 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 frontend/src/components/ui/icons/LocationIcon.tsx diff --git a/frontend/src/components/ui/icons/EyeIcon.tsx b/frontend/src/components/ui/icons/EyeIcon.tsx index ae8a7ec..98cb2df 100644 --- a/frontend/src/components/ui/icons/EyeIcon.tsx +++ b/frontend/src/components/ui/icons/EyeIcon.tsx @@ -7,12 +7,12 @@ export function EyeIcon({ filled, className = 'w-3.5 h-3.5' }: IconProps & { fil - - + + ); } diff --git a/frontend/src/components/ui/icons/LocationIcon.tsx b/frontend/src/components/ui/icons/LocationIcon.tsx new file mode 100644 index 0000000..f3f3b63 --- /dev/null +++ b/frontend/src/components/ui/icons/LocationIcon.tsx @@ -0,0 +1,26 @@ +interface IconProps { + className?: string; +} + +export function LocationIcon({ className = 'w-5 h-5' }: IconProps) { + return ( + + + + + ); +} diff --git a/frontend/src/components/ui/icons/index.ts b/frontend/src/components/ui/icons/index.ts index 1c38057..99671d3 100644 --- a/frontend/src/components/ui/icons/index.ts +++ b/frontend/src/components/ui/icons/index.ts @@ -5,3 +5,4 @@ export { PlusIcon } from './PlusIcon'; export { ChevronIcon } from './ChevronIcon'; export { FilterIcon } from './FilterIcon'; export { LightbulbIcon } from './LightbulbIcon'; +export { LocationIcon } from './LocationIcon';