import { Card, CardContent, CardHeader } from '@/components/ui/card' import { DotMatrixText } from '@/components/ui/dot-matrix' import { Button } from '@/components/ui/button' import { RefreshCw, Server, Box, HardDrive, ListTodo, Shield, Zap } from 'lucide-react' interface QuickActionsProps { onRefresh: () => void isRefreshing: boolean onNavigate?: (view: string) => void } export function QuickActions({ onRefresh, isRefreshing, onNavigate }: QuickActionsProps) { return (
) }