themes icon indicating copy to clipboard operation
themes copied to clipboard

[Tooltip] Issue - Tooltip not showing up on hover

Open MichaelPerlbach opened this issue 1 year ago • 1 comments

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.

MichaelPerlbach avatar Jan 03 '25 18:01 MichaelPerlbach

import tooltip from @radix-ui/themes

ajdiyassin avatar Jan 21 '25 13:01 ajdiyassin