Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ const ActionButton = forwardRef<
} & IconButtonProps
>(({ tooltip, onClick, disabled, children, active, className, ...props }, ref) => {
return (
<Tooltip disableInteractive={true} placement={'top'} title={tooltip}>
<Tooltip
disableInteractive={true}
placement={'top'}
title={tooltip}
>
<IconButton
ref={ref}
onClick={onClick}
Expand All @@ -24,7 +28,7 @@ const ActionButton = forwardRef<
{...props}
className={`${
className ?? ''
} bg-transparent px-1 py-1 text-icon-on-toolbar hover:bg-transparent hover:text-fill-hover`}
} bg-transparent px-1 py-1 text-icon-on-toolbar hover:bg-transparent hover:text-fill-default`}
>
{children}
</IconButton>
Expand Down
Loading