We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daa61e6 commit eb3f69bCopy full SHA for eb3f69b
src/misc/TooltipInfo/TooltipInfo.js
@@ -7,9 +7,9 @@ export const TooltipInfo = ({ title, variant }) =>
7
title ? (
8
<FadingTooltip title={title}>
9
{variant === 'small' ? (
10
- <InfoOutlinedIcon color="action" fontSize="small" />
+ <InfoOutlinedIcon color="action" fontSize="small" sx={{ display: 'inherit' }} />
11
) : (
12
- <InfoOutlinedIcon color="inherit" fontSize="inherit" />
+ <InfoOutlinedIcon color="inherit" fontSize="inherit" sx={{ display: 'inherit' }} />
13
)}
14
</FadingTooltip>
15
) : null;
0 commit comments