I'm trying to recreate this figure, but unfortunately I no longer have access to its source material:
So far I've figured out how to draw the rectangle:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.misc}
\definecolor{viewbutton_border}{RGB}{113, 145, 203}
\definecolor{viewbutton_top}{RGB}{143, 171, 217}
\definecolor{viewbutton_bottom}{RGB}{115, 147, 204}
\begin{document}
\begin{tikzpicture}
\node (button) at (0,0) [
rectangle,
top color=viewbutton_top,
bottom color=viewbutton_bottom,
draw=viewbutton_border,
rounded corners=0.5mm,
line width=0.4mm,
minimum width=1.72cm,
minimum height=1.37cm,
] {};
% how to draw the arrows?
\end{tikzpicture}
\end{document}
And now I'm lost figuring out how to draw these arrows with TikZ inside the rectangle. Do you have any suggestions?




