I have implemented ReactTooltip from the ReactTooltip library
You can view an example here
Component Setup
<ReactTooltip className={styles.customTheme} id={id} place={placement} effect="solid">
{children}
</ReactTooltip>
Styling with SCSS
.customTheme {
color: #ff6e00 !important;
background-color: orange !important;
&.place-top {
&::after {
border-top: 6px solid orange !important;
}
}
}
Expected Result
https://i.sstatic.net/SLdtx.png
Known Issue
The arrow color is not being changed as expected.