Just for fun: some arrow style of that sort. The advantage is that you can draw the arrow with simple commands like
\draw[outlined arrow] (-1,3) -| (0,0);
The disadvantage is that, unlike vi pa's nice answer or this answer, it overpaints the interior in white. The appearance is controlled by various pgf keys (see the examples in the shifted scope).
\documentclass[tikz,border=3mm]{standalone}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}[outlined arrow/.code={\tikzset{oarrow/.cd,#1},
\def\pv##1{\pgfkeysvalueof{/tikz/oarrow/##1}}%
\edef\locallw{\the\pgflinewidth}%
\tikzset{-{Triangle[open,fill=white,line width=\locallw,
length=\pv{head length},width=\pv{head width}]},
line width=\pv{line width},
postaction={-,draw=white,line width=\pv{line width}-2*\locallw,
shorten <=\locallw,shorten >=\pv{head length}-1.5*\locallw}%
}},oarrow/.cd,line width/.initial=0.6cm,head width/.initial=1.2cm,
head length/.initial=1cm]
\draw[outlined arrow] (-1,3) -| (0,0);
\draw[outlined arrow] (-1,-3) -| (0,0);
\begin{scope}[xshift=5cm]
\draw[blue,thick,outlined arrow={line width=0.7cm,head width=1.4cm}] (-1,3) -| (0,0);
\draw[red,outlined arrow={line width=0.5cm,head length=0.8cm}] (-1,-3) -| (0,0);
\end{scope}
\end{tikzpicture}
\end{document}

Curved arrows do not work with this style, you may want to look e.g. here for a possible way to do curved arrows.