import { Send } from 'lucide-react'; import { motion } from 'motion/react'; interface BatchActionBarProps { selectedCount: number; onCancel: () => void; onConfirm: () => void; } export default function BatchActionBar({ selectedCount, onCancel, onConfirm }: BatchActionBarProps) { return (
已选 {selectedCount}
); }