"use client"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { Trash2 } from "lucide-react"; interface AccountBulkActionsProps { selectedCount: number; onDelete: () => void; } export function AccountBulkActions({ selectedCount, onDelete, }: AccountBulkActionsProps) { if (selectedCount === 0) return null; return (
{selectedCount} compte{selectedCount > 1 ? "s" : ""} sélectionné {selectedCount > 1 ? "s" : ""}
); }