[Tex/LaTex] List with arrows instead of bullets

arrowsenumitemitemizelists

I want a bullet list with arrows instead of bullets, like:

=> Line 1
=> Line 2

I tried this, but it returned some error:

\begin{itemize}{labelitemi}{$\Rightarrow$}[leftmargin=1em]
 \item Line 1
 \item Line 2
\end{itemize}

(I took the code from here)
It should be simple, but I couldn't figure it out from enumitem's manual. How do I go about this?

Best Answer

I think the question you're linking to is meaning another syntax, but this works :

\documentclass{article}

\begin{document}
\begin{itemize}%[leftmargin=1em]
  \renewcommand{\labelitemi}{$\Rightarrow$}
 \item Line 1
 \item Line 2
\end{itemize}
\end{document}