diff --git a/lib/components/tooltip/tooltip.tsx b/lib/components/tooltip/tooltip.tsx index d59335b..d2bb8da 100644 --- a/lib/components/tooltip/tooltip.tsx +++ b/lib/components/tooltip/tooltip.tsx @@ -16,9 +16,17 @@ const modifiers: TooltipProps['modifiers'] = [ export const Tooltip: ComponentWithAs, ChakraTooltipProps> = typedMemo( forwardRef((props: TooltipProps, ref) => { - const { children, hasArrow = true, placement = 'top', ...rest } = props; + const { children, hasArrow = true, placement = 'top', openDelay = 500, ...rest } = props; return ( - + {children} );