In some of my tikz pictures I use symbols from the fontawesome package.
Screenshot
Question
How can I rotate symbols in tikz?
MWE
\documentclass[border=2mm]{standalone}
\usepackage{tikz}
\usepackage{fontawesome}
\begin{document}
\begin{tikzpicture}
% Rocket
\draw (0,0) node {\faRocket};
% Rectangle
\node [draw, thick, shape=rectangle, minimum width=3cm, minimum height=2cm, anchor=center] at (0,0) {};
\end{tikzpicture}
\end{document}
What I tried so far
\draw[rotate=45] (0,0) node {\faRocket}; doesn't do the trick.


\draw (0,0) node[rotate=45] {\faRocket};? – leandriis Dec 31 '17 at 10:30