'use client'; import { Sparkles } from 'lucide-react'; import { cn } from '@djangocfg/ui-core/lib'; export interface EmptyStateProps { greeting?: string; description?: string; suggestions?: Array<{ label: string; prompt: string }>; onPickSuggestion?: (prompt: string) => void; className?: string; } export function EmptyState({ greeting, description, suggestions, onPickSuggestion, className, }: EmptyStateProps) { return (
{greeting ? (

{greeting}

) : null} {description ? (

{description}

) : null} {suggestions?.length ? (
{suggestions.map((s) => ( ))}
) : null}
); }