This warning icon in link: How to print a warning sign (triangle with exclamation point)?
i want to fill red colour in backgroud like attached image

This minimal code:
\documentclass{article}
\usepackage{stackengine}
\usepackage{scalerel}
\usepackage{xcolor}
\newcommand\dangersign[1][2ex]{%
\renewcommand\stacktype{L}%
\scaleto{\stackon[1.3pt]{\color{red}$\triangle$}{\tiny !}}{#1}%
}
\begin{document}
This is a danger sign 5ex tall: \dangersign[5ex]\par
Here is the default (2ex) size: \dangersign
\end{document}
! can black or white Please help. Thank in advance

!is controlled by the length0.3ptshown in my macro (try increasing it). The stretched shape of the triangle is controlled by the scale number[.9]shown in my macro (try decreasing it). – Steven B. Segletes Apr 05 '19 at 11:34