'use client' import React from 'react' import { FolderPlus, Clipboard, Upload, CheckSquare, Copy, Scissors } from 'lucide-react' import { Button } from '../button' import { cn } from '../../../utils/cn' import type { FileManagerActionBarProps } from './types' export function FileManagerActionBar({ canPaste = false, hasSelection = false, onNewFolder, onPaste, onCopy, onCut, onUpload, onSelectAll, className }: FileManagerActionBarProps) { return (
) }