I am editing a document for my classes, the idea is that when I talk about technology, I add the code in the document.
I wish there was something similar to the attached image.
\documentclass[12pt]{standalone}
\usepackage{graphicx}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{pgf,tikz}
\usepackage{xcolor}
\usepackage{ifsym}
\newcommand{\calculator}{ %
\begin{tikzpicture}[rounded corners=1pt]
\draw[line width=.4pt,draw=gray!50, ball color = black!70, opacity = 0.7] (0.,0.) -- (0.44,0.) -- (0.44,0.64) -- (0.,0.64) -- cycle;
\draw[line width=.5pt,draw=white,fill=white] (0.04,0.6) -- (0.4,0.6) -- (0.4,0.44) -- (0.04,0.44) -- cycle;
\draw[line width=.05pt,draw=blue!50,ball color=blue!50] (0.04,0.4) -- (0.2,0.4) -- (0.2,0.24) -- (0.04,0.24) -- cycle;
\draw[line width=.05pt,draw=blue!50,ball color=blue!50] (0.24,0.4) -- (0.4,0.4) -- (0.4,0.24) -- (0.24,0.24) -- cycle;
\draw[line width=.05pt,draw=blue!50,fill=blue, ball color=blue!50] (0.04,0.2) -- (0.2,0.2) -- (0.2,0.04) -- (0.04,0.04) -- cycle;
\draw[line width=.05pt,draw=orange,ball color=orange] (0.24,0.2) -- (0.4,0.2) -- (0.4,0.04) -- (0.24,0.04) -- cycle;
\draw (-0.17,0.755) node[anchor=north west] { \scalebox{.4}{ \textifsym{123}}};
\draw (-0.15,0.52) node[anchor=north west] {\scalebox{.4}{ $\mathbf{ \boldsymbol{+}}$}};
\draw (0.06,0.52) node[anchor=north west] {\scalebox{.4}{ $\mathbf{-}$}};
\draw [white] (0.06,0.28) node[anchor=north west] {\scalebox{.4}{ $\mathbf{=}$}};
\draw (-0.08,0.3) node[anchor=north west] {\scalebox{.4}{\textbf{x}}};
\end{tikzpicture} }
\begin{document}
\calculator Calculadora $\boldsymbol{3x+x^2=7}$
\end{document}

