import { BarChart3, Check, Edit, Play, Trash2 } from "lucide-react"; import { useTranslation } from "react-i18next"; import { Button } from "@/components/ui/button"; import { cn } from "@/lib/utils"; interface ProviderActionsProps { isCurrent: boolean; onSwitch: () => void; onEdit: () => void; onConfigureUsage: () => void; onDelete: () => void; } export function ProviderActions({ isCurrent, onSwitch, onEdit, onConfigureUsage, onDelete, }: ProviderActionsProps) { const { t } = useTranslation(); return (
); }