material-tailwind
material-tailwind copied to clipboard
`Tooltip` does not work in a `PopoverHandler`
<Popover placement="bottom-start">
<PopoverHandler>
<Tooltip content="Filter content">
<Button className="p-2 flex items-center gap-2 border-solid" variant="outlined">
Filters
</Button>
</Tooltip>
</PopoverHandler>
<PopoverContent className="w-72">
<Typography>Filter options</Typography>
</PopoverContent>
</Popover>
The following code snippet causes the popover handler not to work.