import { AlertCircle, RefreshCw } from "lucide-react"; interface ErrorMessageProps { title?: string; message?: string; onRetry?: () => void; fullHeight?: boolean; } export default function ErrorMessage({ title = "Something went wrong", message = "An error occurred while loading this content.", onRetry, fullHeight = true, }: ErrorMessageProps) { return (
{message}