[Tex/LaTex] a wider \Downarrow

symbols

I want to write a wider \Downarrow, I couldn't find one in any package I know, so I tried with:

\documentclass[11pt,a4paper]{book}    
\usepackage{amsmath}

\begin{document}
\begin{equation}
\Big\Downarrow
%\Large\Downarrow
\end{equation}
\end{document}

but it seems that it only gets longer, I want it wider: how can I do that?

Edit: to be clearer I add an image:

enter image description here

on the left: what I have
on the right: what I want.

Best Answer

Here is a way to do that while also respecting a correct spacing around the symbol:

\documentclass[a4paper,12pt]{article}

\usepackage{graphicx}
\usepackage{relsize}
\newcommand\wideDownarrow{\mathrel{\scalebox{1.2}[1]{$\Downarrow$}}}

\begin{document}

\[ A\Downarrow B \wideDownarrow C \]

\end{document} 

enter image description here