diff --git a/src/renderer/components/tooltip/index.tsx b/src/renderer/components/tooltip/index.tsx index 9e2d4b9d..8c3822af 100644 --- a/src/renderer/components/tooltip/index.tsx +++ b/src/renderer/components/tooltip/index.tsx @@ -27,6 +27,10 @@ export const Tooltip = ({ children, ...rest }: TooltipProps) => { maxWidth: '250px', }, }} + transitionProps={{ + duration: 250, + transition: 'fade', + }} {...rest} > {children} @@ -37,8 +41,6 @@ export const Tooltip = ({ children, ...rest }: TooltipProps) => { Tooltip.defaultProps = { openDelay: 0, position: 'top', - transition: 'fade', - transitionDuration: 250, withArrow: true, withinPortal: true, };