How can I draw \Rightarrow like this:?

\documentclass{standalone}
\usepackage{tikz}
\newcommand{\Arrow}[1]{%
\parbox{#1}{\tikz{\draw[->,line width=0.7pt,line cap=round](0,0)--(#1,0);}}
}
\newcommand{\myarrow}{\Arrow{.45cm}}
\begin{document}
4 \myarrow 2
\end{document}
Update:
How can i fix the left side?

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows}
\newcommand{\Arrow}[1]{%
\parbox{#1}{\tikz{\draw[-implies,double equal sign distance,line width=0.7pt,line cap=round](0,0)--(#1,0);}}
}
\newcommand{\myarrow}{\hspace{0.0cm}\Arrow{.45cm}\hspace{0.0cm}}
\begin{document}
4 \myarrow 2
\end{document}

\Rightarrowby your arrow? Or define a command that behaves like\Rightarrowin math mode? – gernot Oct 08 '21 at 09:20rightarrow. But I couldn't drawRightarrow. I want to define a newmyRightarrow. How can i draw using tikz? – cufcuf Oct 08 '21 at 09:23,doublebut the output isn't great so you'd need to fiddle with the parameters a bit – David Carlisle Oct 08 '21 at 09:23-{Classical TikZ Rightarrow}(which needs\usetikzlibrary{arrows.meta}) instead of the default->might be close to what you want. Also remove theline cap. – Peter Grill Oct 08 '21 at 09:53