themes
themes copied to clipboard
[Tooltip] Issue - Tooltip not showing up on hover
This is my test page:
import { Text,IconButton } from "@radix-ui/themes"; import {Tooltip} from "@radix-ui/react-tooltip"; import { PlusIcon } from "@radix-ui/react-icons"
export default function Page() { return ( <> <Text>Test</Text><br /><br /> <div style={{marginLeft:'200px'}}> <Tooltip content="Add to library"> <IconButton radius="full"> <PlusIcon /> </IconButton> </Tooltip> </div> </> ); }
I would have expected the Tooltip to show up. But it does not happen, no matter what I try.
import tooltip from @radix-ui/themes