import { MdTipsAndUpdates } from "react-icons/md"; interface Props { text: string; } export default function Tip({ text }: Props) { return (

{text}

); };