diff options
Diffstat (limited to 'src/frontend/app/components')
| -rw-r--r-- | src/frontend/app/components/PlaceListItem.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/frontend/app/components/PlaceListItem.tsx b/src/frontend/app/components/PlaceListItem.tsx index 6c4f4a7..21250d6 100644 --- a/src/frontend/app/components/PlaceListItem.tsx +++ b/src/frontend/app/components/PlaceListItem.tsx @@ -1,8 +1,12 @@ -import { Building2, MapPin } from "lucide-react"; +import { Building2, BusFront, MapPin } from "lucide-react"; import type { PlannerSearchResult } from "~/data/PlannerApi"; function getIcon(layer?: string) { switch ((layer || "").toLowerCase()) { + case "stop": + return ( + <BusFront className="w-4 h-4 text-slate-600 dark:text-slate-400" /> + ); case "venue": return ( <Building2 className="w-4 h-4 text-slate-600 dark:text-slate-400" /> |
