You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As explained in this comment, title is not a valid svg attribute and will then not display a tooltip on icon hover. Setting title prop should instead add a <title> child element as follow:
<Icon title="my title" />
resulting in:
<svg>
<title>{title}</title>
</svg>
The text was updated successfully, but these errors were encountered:
As explained in this comment,
title
is not a validsvg
attribute and will then not display a tooltip on icon hover. Settingtitle
prop should instead add a<title>
child element as follow:resulting in:
The text was updated successfully, but these errors were encountered: