'use client' import React from 'react' import { FolderOpen } from 'lucide-react' import { Button } from '../button' import { cn } from '../../../utils/cn' import type { FileManagerEmptyProps } from './types' export function FileManagerEmpty({ message = 'No files or folders found', description = 'This folder is empty. Create a new folder or upload files to get started.', action, className }: FileManagerEmptyProps) { return (
{description}
{action && ( )}