I have the following MWE:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
This example solves a simple equation:
\begin{equation}
x + 2 = 6 \nonumber
\end{equation}
\begin{equation}
\Leftrightarrow \nonumber
\end{equation}
\begin{equation}
x = 4
\end{equation}
It would nice if the spacing between the equations was reduced!
\end{document}
Which looks like this:
I would like to reduce the spacing before and after the equivalence sign. I tried these options but none of them seems to work. Help!

