diff --git a/packages/ui-patterns/src/IconPanel/index.tsx b/packages/ui-patterns/src/IconPanel/index.tsx index 5377024f1ff..7ab55643dab 100644 --- a/packages/ui-patterns/src/IconPanel/index.tsx +++ b/packages/ui-patterns/src/IconPanel/index.tsx @@ -3,7 +3,7 @@ import { ChevronRight } from 'lucide-react' import { useTheme } from 'next-themes' import * as React from 'react' -import ReactTooltip from 'react-tooltip' +import { Tooltip } from 'react-tooltip' interface Props { title?: string @@ -56,9 +56,15 @@ export const IconPanel = ({ ) } + const tooltipId = React.useId() + return ( <> -