import * as React from 'react'; import { clsx } from 'clsx'; import { Inbox } from 'lucide-react'; import { Button } from './Button.js'; export interface EmptyStateProps { icon?: React.ReactNode; title: string; description?: string; actionLabel?: string; onAction?: () => void; className?: string; } export function EmptyState({ icon, title, description, actionLabel, onAction, className, }: EmptyStateProps) { return (
{description}
)} {actionLabel && onAction && ( )}