aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/map/StopSummarySheet.tsx
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2026-03-08 23:01:01 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2026-03-08 23:01:01 +0100
commit2063f8101b1c887e079e11c96755a2441aa1b57b (patch)
tree60b64c3567fa6d543c88bd0f827675df3b44ea90 /src/frontend/app/components/map/StopSummarySheet.tsx
parentc3db1a9a85745597c1bec334443d630f009e30c8 (diff)
Rename LineIcon -> RouteIcon, fix some size issues
Diffstat (limited to 'src/frontend/app/components/map/StopSummarySheet.tsx')
-rw-r--r--src/frontend/app/components/map/StopSummarySheet.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/app/components/map/StopSummarySheet.tsx b/src/frontend/app/components/map/StopSummarySheet.tsx
index 7b4dd7b..be2df67 100644
--- a/src/frontend/app/components/map/StopSummarySheet.tsx
+++ b/src/frontend/app/components/map/StopSummarySheet.tsx
@@ -6,7 +6,7 @@ import { Link } from "react-router";
import { ArrivalList } from "~/components/arrivals/ArrivalList";
import { useStopArrivals } from "../../hooks/useArrivals";
import { ErrorDisplay } from "../ErrorDisplay";
-import LineIcon from "../LineIcon";
+import RouteIcon from "../RouteIcon";
import "./StopSummarySheet.css";
import { StopSummarySheetSkeleton } from "./StopSummarySheetSkeleton";
@@ -53,7 +53,7 @@ export const StopSummarySheet: React.FC<StopSheetProps> = ({
<div className={`flex flex-wrap flex-row gap-2`}>
{data?.routes.map((lineObj) => (
- <LineIcon
+ <RouteIcon
key={lineObj.shortName}
line={lineObj.shortName}
mode="pill"