We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2815143 commit f95b30eCopy full SHA for f95b30e
src/components/HintTooltip/HintTooltip.tsx
@@ -23,8 +23,14 @@ const HintTooltip = ({
23
...props
24
}: HintTooltipProps &
25
Omit<ComponentPropsWithoutRef<typeof Tooltip>, 'popup' | 'width'>) => (
26
- <Tooltip popup={children} width={width} {...props}>
27
- <StyledIcon $flow={flow} name="info-circle-outline" tabIndex={0} />
+ <Tooltip
+ popup={children}
28
+ width={width}
29
+ {...props}
30
+ aria-label="Help"
31
+ wrapperEl="button"
32
+ >
33
+ <StyledIcon $flow={flow} name="info-circle-outline" />
34
</Tooltip>
35
);
36
0 commit comments