import { BarChart3, Check, Copy, 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; onDuplicate: () => void; onConfigureUsage: () => void; onDelete: () => void; } export function ProviderActions({ isCurrent, onSwitch, onEdit, onDuplicate, onConfigureUsage, onDelete, }: ProviderActionsProps) { const { t } = useTranslation(); const iconButtonClass = "h-8 w-8 p-1"; return (
); }