I'm trying to make a floating "Tip" box. This is my MWE:
\documentclass{report}
\usepackage{wrapfig}
\usepackage{framed}
\usepackage{lipsum}
\newenvironment{tip}[1][3cm]
{\begin{wrapfigure}{R}{#1}\begin{framed}Tip:\\}
{\end{framed}\end{wrapfigure}}
\begin{document}
\begin{tip}
Hello this is a test
\end{tip}
\lipsum[1]
\end{document}
And this is what I want:


