import { Button } from "@/components/ui/button"; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, DropdownMenuSeparator, } from "@/components/ui/dropdown-menu"; import { Loader2, RefreshCw, ChevronDown } from "lucide-react"; interface RequestUpdateMenuProps { onUpdateDevice: () => void; onUpdateRoom: () => void; onUpdateAll: () => void; loading?: boolean; } export function RequestUpdateMenu({ onUpdateDevice, onUpdateRoom, onUpdateAll, loading, }: RequestUpdateMenuProps) { return ( Cập nhật thiết bị cụ thể Cập nhật theo phòng Cập nhật tất cả thiết bị ); }