// src/components/admin/plans/PlanManager/components/EmptyState.tsx import Link from 'next/link'; import { Button } from '@/components/ui/button'; import { Package, Plus } from 'lucide-react'; interface EmptyStateProps { title?: string; description?: string; showCreateButton?: boolean; } export function EmptyState({ title = "No hay planes creados", description = "Comienza creando tu primer plan turĂ­stico", showCreateButton = true }: EmptyStateProps) { return (

{title}

{description}

{showCreateButton && (
)}
); }