import React from "react"; import { Button } from "@/components/ui"; import { Settings, Bell, User, Search, Plus, RefreshCw } from "lucide-react"; import { Badge } from "@/components/ui"; interface HotbarProps { onRefresh: () => void; onAddResource: () => void; onSettings: () => void; onNotifications?: () => void; notificationCount?: number; clusterName?: string; } export function Hotbar({ onRefresh, onAddResource, onSettings, onNotifications, notificationCount = 0, clusterName, }: HotbarProps) { return (
{clusterName ?? "No cluster selected"}
); }