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';