import { Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, } from "@/components/ui/empty" import { cn } from "@/lib/utils" interface EmptyStateProps { icon?: React.ReactNode title: string description?: string action?: React.ReactNode className?: string } function EmptyState({ icon, title, description, action, className }: EmptyStateProps) { return ( {icon && {icon}} {title} {description && {description}} {action && {action}} ) } export { EmptyState, type EmptyStateProps }