I am trying to achieve the same in the attached image. Following is my attempt
\documentclass[conference]{IEEEtran}
\usepackage[demo]{graphicx}
\usepackage{tikz,pgfplots,pgfplotstable}
\usepackage{xparse}
\NewDocumentCommand\DownArrow{O{2.0ex} O{black}}{%
\mathrel{\tikz[baseline] \draw [<-, line width=0.5pt, #2] (0,0) -- ++(0,#1);}
}
\begin{document}
\begin{enumerate}
\item This is the fist point
\begin{minipage}{.2\textwidth}
\begin{itemize}
\item Component 1
\item Component 2
\item Component 3
\item Component 4
\end{itemize}
\end{minipage}
\begin{minipage}{.2\textwidth}
$\DownArrow[60pt][>=latex,red, ultra thick] minimum weight$
\end{minipage}
\item This is the second point.
\end{enumerate}
\end{document}
To obtain downarrow, code give in the following link is used How to elongate down arrow?
Given picture will be a part of a list as shown in the code (enumerate).
