import { motion } from 'framer-motion'; import { Radar } from 'lucide-react'; import type { ReactNode } from 'react'; interface CardEmptyStateProps { title: string; subtitle?: string; icon?: ReactNode; className?: string; minHeight?: number; } export function CardEmptyState({ title, subtitle, icon, className = '', minHeight = 160, }: CardEmptyStateProps) { return (
{icon ?? }

{title}

{subtitle ? (

{subtitle}

) : null}
); }