I want to draw a cross symbol through the arrow in the tree below. I'm looking for something similar to the image attached below.
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz-qtree-compat}
\tikzset{every tree node/.style={baseline=(top.base),
level distance=2em, sibling distance=4em, align=center,
parent anchor=south, child anchor=north, anchor=north}, sibling distance=15pt}
\usetikzlibrary{positioning}
\begin{document}
\begin{center}
\begin{tikzpicture} [inv/.style={overlay, coordinate }, sibling distance=10pt]
\Tree [.XP \node(AA){X}; [.YP [.Y ] [.ZP Z \node(BB){X}; ] ]]]]
\draw[ -> ] (AA.south)
.. controls +(south:5em)
and +(south:2em) .. (BB.south);
\end{tikzpicture}
\end{center}
\end{document}




