'use client'; import React from 'react'; import { Trash2, Archive, EyeOff } from 'lucide-react'; import { Button } from '@/components/ui/button'; interface BulkActionsToolbarProps { selectedCount: number; onBulkAction: (action: 'delete' | 'mark-read' | 'mark-unread' | 'archive') => void; } export default function BulkActionsToolbar({ selectedCount, onBulkAction }: BulkActionsToolbarProps) { return (
{selectedCount} selected
); }