The following MWE rotates the label by +90°. How can I achieve rotation by -90° without changing the direction of the drawn path?
MWE:
\documentclass[margin=5mm]{standalone}
\usepackage{amsmath}
\usepackage{siunitx}
\usepackage{tikz}
\usepackage[european, straightvoltages,americanvoltages]{circuitikz}
\begin{document}
\begin{circuitikz}
\draw (0,0) to[R,l={\mbox{$R=\SI{50}{\ohm}$}},label/align=rotate] (0,-2);
\end{circuitikz}
\end{document}

l_={...}. – John Kormylo Oct 31 '22 at 13:02