I have gone through the official documentation, and haven't found how to increase the react tooltip arrow size.
<span className="icon margin-10-right txtSize20 txtBlue icon_profile-menu icon-tool"
data-tip={`<p>HTML</p>`}
data-for={data._id} data-place="right" data-effect="solid" data-type="light" data-text-color="black" data-html={true} data-class="tooltip2">
</span>
<ReactTooltip className="custom-tool" html={true} multiline={false} scrollHide={false} id={data._id}/>
Kindly help me with this.
The library doesn't support that. However, you can do the following workaround:
uuid = "uuid-for-tooltip-arrow"as a property forReactTooltip. For example:where
<new-height>is a number representing the new height in pixels. E.g. if you want to double the height, it's going to be12, resulting inAlso note that you have to change
place-topto the appropriate direction if the tooltip is not on the top. So if you setplace = "left", then you have to add the following CSS: