It's a tikz picture component, rather than an arrow.
The >
is a Classical TikZ arrowhead, the =
likely is a thin, double
edge between two nodes.
I don't (currently have time to) understand the (heavily parameterized) dynkin package code -- so not an answer -- but here is a very simplistic off-the-cuff thematic re-interpretation (not necessarily accurate) of such a construct:
MWE
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{
arrows.meta,
positioning,
}
\begin{document}
\begin{tikzpicture}[inner sep=2pt,outer sep=0pt]
\node [circle,fill=black,radius=2pt,draw,label=A] (A) at (0,0) {};
\node [circle,fill=black,radius=2pt,draw,label=B] (B) at (1,0) {};
\node [label=C] (C) at (1.5,0) {};
\node [circle,fill=black,radius=2pt,draw,label=D] (D) at (2,0) {};
\draw[thin] (A) -- (B);
\draw[thin,double] (C.west) -- (D);
\draw[-{Classical TikZ Rightarrow[red,length=1mm,]},thin,double,] (B) -- (C.east);
\end{tikzpicture}
\end{document}
You could emulate a =>=
arrow using invisible nodes, for example like so:
\begin{tikzpicture}[inner sep=2pt,outer sep=0pt]
\node [label=B] (B) at (1,0) {};
\node [label=C] (C) at (1.5,0) {};
\node [label=D] (D) at (2,0) {};
\draw[thin,double] (C.west) -- (D);
\draw[-{Classical TikZ Rightarrow[red,length=1mm,]},thin,double,] (B) -- (C.east);
\end{tikzpicture}