Tooltip
作者:VassoD♥ 0 点赞MIT
实时预览
源代码
export default function Component() {
return (
<div className="tooltip-wrapper">
<button className="hover-me">Hover me! 🎈</button>
<div className="tooltip">
<span className="star">⭐</span>
<span className="star">⭐</span>
<span className="star">⭐</span>
Woohoo! You found the secret message! Keep being awesome! 🚀
</div>
</div>
);
}