Skip to content

Commit

Permalink
fix: increase button clickable radius
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Willenbring committed Nov 24, 2023
1 parent 9cf4fb4 commit cbac5e3
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,9 @@ export function TooltipIconButton({
}: TooltipIconButtonProps) {
return (
<Tooltip title={tooltipText}>
<span>
<IconButton {...props} size="small" onClick={onClick}>
{children}
</IconButton>
</span>
<IconButton {...props} size="small" onClick={onClick}>
{children}
</IconButton>
</Tooltip>
);
}

0 comments on commit cbac5e3

Please sign in to comment.