I'm facing an issue i can't solve by my own : i'm trying to make a tcolorbox with an image and a text inside. I would like to change the text alignment to center it
mwe :
\documentclass{article}
\usepackage[dvipsnames,svgnames]{xcolor}
\usepackage[skins,theorems]{tcolorbox}
\usepackage{mwe}
\newtcbox{\important}{enhanced,on line,
colframe=red,colback=red!5!white, box align=center,
boxrule=0.5pt,arc=4pt,boxsep=0pt,left=6pt,right=6pt,top=6pt,bottom=6pt}
\newcommand{\appel}{\begin{center} \important{\includegraphics[scale=0.07]{image} Here you write the text }\end{center}}
\begin{document}
\appel
\end{document}
It's probably easy but i can't figure how to change it -_- I've probably tried some stupid things in my /newtcbox lol
