import { AlertCircle, RefreshCw } from "lucide-react"; import { Button } from "@/components/primitives/button"; interface ErrorStateProps { message: string; onRetry?: () => void; } export function ErrorState({ message, onRetry }: ErrorStateProps) { return (

{message}

{onRetry && ( )}
); }