import React from 'react'; import { Card, Button } from '@veza/design-system'; import { LucideIcon } from 'lucide-react'; import { cn } from '@/lib/utils'; interface KodoEmptyStateProps { icon: LucideIcon; title: string; description: string; actionLabel?: string; onAction?: () => void; className?: string; } export function KodoEmptyState({ icon: Icon, title, description, actionLabel, onAction, className, }: KodoEmptyStateProps) { return (

{title}

{description}

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