import { X } from 'lucide-react'; import { Button } from '@/components/ui/button'; import type { BulkAction } from '@/hooks/useBulkStackActions'; interface SidebarBulkBarProps { selectedCount: number; isPaid: boolean; onAction: (action: BulkAction) => void; onClear: () => void; } export function SidebarBulkBar({ selectedCount, isPaid, onAction, onClear }: SidebarBulkBarProps) { return (