'use client'; import { Copy, Forward, Loader2, Trash2, X } from 'lucide-react'; import { Button } from '@/components/ui/button'; interface ChatSelectionToolbarProps { count: number; deleting?: boolean; onCancel: () => void; onCopy: () => void; onForward: () => void; onDelete: () => void; } export function ChatSelectionToolbar({ count, deleting, onCancel, onCopy, onForward, onDelete }: ChatSelectionToolbarProps) { return (

{count} выбрано

); }