rhombus
A rhombus is a quadrilateral with four congruent sides.
\documentclass[tikz,margin={4cm 0cm}]{standalone}
\usepackage{tkz-euclide}
%
\begin{document}
\begin{tikzpicture}
\tkzDefPoint(0,2){A}
\tkzDefPoint(4,0){B}
\tkzDefPoint(8,2){C}
\tkzDefPoint(4,4){D}
% \tkzDrawPolygon(A,B,C,D)
\begin{scope}[decoration={
markings,
mark=at position 0.525 with {\arrow{Stealth}}}
]
\tkzDrawSegments[postaction={decorate}, very thick](A,B D,C B,C A,D)
\end{scope}
%
\tkzDrawSegments[thick](A,C B,D)
\tkzDefMidPoint(A,C) \tkzGetPoint{M}
%
\tkzMarkSegments[mark=|](A,M M,C)
\tkzMarkSegments[mark=||](M,B D,M)
%
\tkzMarkRightAngle(C,M,D)
\end{tikzpicture}
\end{document}
A rhombus is both a kite and a parallelogram.