creativetimofficial / material-tailwind

@material-tailwind is an easy-to-use components library for Tailwind CSS and Material Design.
https://material-tailwind.com/
MIT License
3.51k stars 306 forks source link

`Tooltip` does not work in a `PopoverHandler` #657

Open Remscar opened 3 months ago

Remscar commented 3 months ago
<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.