'use client'; /** * BulkActions Component * * Actions bar for bulk operations on selected issues. * * @module features/issues/components/BulkActions */ import { Trash2 } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Separator } from '@/components/ui/separator'; import { cn } from '@/lib/utils'; interface BulkActionsProps { selectedCount: number; onChangeStatus: () => void; onAssign: () => void; onAddLabels: () => void; onDelete: () => void; className?: string; } export function BulkActions({ selectedCount, onChangeStatus, onAssign, onAddLabels, onDelete, className, }: BulkActionsProps) { if (selectedCount === 0) return null; return (
{selectedCount} selected
); }