I'd like to draw an arrow with corners in TikZ, which looks the following (should have the same width everywhere):
I am aware of this solution, but it makes the whole arrow colored because of the thick line width instead of having a white arrow with a colored border around it.
MWE for drawing an arrow without a corner:
\documentclass[tikz]{standalone}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{calc, shapes.arrows}
\begin{document}
\begin{tikzpicture}
\node (arrow) at (0,0) {};
\node [single arrow, draw, minimum height=1cm, single arrow head extend=0.2cm, minimum width=0.5cm] at (arrow) {text};
\end{tikzpicture}
\end{document}




Triangleinstead oflatexarrow tip – Ignasi Oct 20 '22 at 08:22