Bootssymbol hinzugefügt
This commit is contained in:
@@ -1,6 +1,14 @@
|
||||
import { Anchor, Bell, CloudSun, Route as RouteIcon, type LucideIcon } from "lucide-react";
|
||||
import {
|
||||
Anchor,
|
||||
Bell,
|
||||
CloudSun,
|
||||
Route as RouteIcon,
|
||||
Ship,
|
||||
type LucideIcon
|
||||
} from "lucide-react";
|
||||
|
||||
export const NAVIGATION_TOOL_ORDER = [
|
||||
"boat",
|
||||
"anchor",
|
||||
"conditions",
|
||||
"upcoming",
|
||||
@@ -18,6 +26,7 @@ type NavigationToolDefinition = {
|
||||
};
|
||||
|
||||
const NAVIGATION_TOOLS: readonly NavigationToolDefinition[] = [
|
||||
{ id: "boat", label: "Mein Boot", Icon: Ship },
|
||||
{ id: "anchor", label: "Ankerwache", Icon: Anchor },
|
||||
{ id: "conditions", label: "Wetter und Tide", Icon: CloudSun },
|
||||
{ id: "upcoming", label: "Als Nächstes", Icon: Bell },
|
||||
@@ -43,7 +52,7 @@ export function NavigationToolRail({
|
||||
disabledTools = {},
|
||||
workspaceId = "navigation-workspace",
|
||||
className,
|
||||
ariaLabel = "Kartenwerkzeuge"
|
||||
ariaLabel = "Navigationswerkzeuge"
|
||||
}: NavigationToolRailProps) {
|
||||
return (
|
||||
<nav className={classNames("navigation-tool-rail", className)} aria-label={ariaLabel}>
|
||||
|
||||
Reference in New Issue
Block a user