import { RiDeleteBin5Line, RiFileCopyLine } from "@remixicon/react"; import MoneyValues from "@/shared/components/money-values"; import { Button } from "@/shared/components/ui/button"; type TransactionsBulkBarProps = { selectedCount: number; selectedTotal: number; mode: "delete" | "import"; onAction: () => void; }; export function TransactionsBulkBar({ selectedCount, selectedTotal, mode, onAction, }: TransactionsBulkBarProps) { return (