import { Plus, Zap } from "lucide-react"; type EmptyStateProps = { title: string; copy: string; actionLabel?: string; onAction?: () => void; }; export function EmptyState({ title, copy, actionLabel, onAction }: EmptyStateProps) { return (

{title}

{copy}

{actionLabel && onAction && ( )}
); }