"use client"; export default function Tooltip({ text, children, position = "top" }) { const posClass = { top: "bottom-full left-1/2 -translate-x-1/2 mb-1.5", bottom: "top-full left-1/2 -translate-x-1/2 mt-1.5", left: "right-full top-1/2 -translate-y-1/2 mr-1.5", right: "left-full top-1/2 -translate-y-1/2 ml-1.5", }[position]; return (
{children}
{text}
); }