14 lines
316 B
TypeScript
14 lines
316 B
TypeScript
import { MdTipsAndUpdates } from "react-icons/md";
|
|
|
|
interface Props {
|
|
text: string;
|
|
}
|
|
|
|
export default function Tip({ text }: Props) {
|
|
return (
|
|
<div className="flex flex-row gap-3 text-gray-500 font-medium">
|
|
<MdTipsAndUpdates size={25} />
|
|
<p>{text}</p>
|
|
</div>
|
|
);
|
|
}; |