Looking to enhance my tooltip using the Chakra UI library by adding an image/icon directly into it. Instead of just displaying the label, I want the MdWarningAmber Icon to be visible within the tooltip itself, rather than next to the button that triggers the hover effect.
<Tooltip label=' Access to this page is exclusively available to registered users.'
className="tooltip"
aria-label="tooltip"
placement='right-end'
closeDelay={100}
bg={"white"}
textColor={"#8e8e8e"} >
<span>
<Icon as={MdWarningAmber} color={"#8e8e8e"} />
<Button>
Hover Over Me
</Button>
</span>
</Tooltip>
I've experimented with placing a tag containing the Icon inside, but that hasn't yielded the desired outcome.