import { Card, CardContent } from "@/components/ui/card"; import { cn } from "@/lib/utils"; import { SearchX } from "lucide-react"; interface NoResultsProps { title?: string; description?: string; className?: string; } export default function NoResults({ title = "No Results Found", description = "We couldn't find what you're looking for. Try adjusting your search or filters.", className, }: NoResultsProps) { return ( {/* Main content */}
{/* Icon with modern styling */}
{/* Text content */}

{title}

{description}

); }