diff --git a/packages/propel/src/tooltip/root.tsx b/packages/propel/src/tooltip/root.tsx index d6b48ca7ab7..0bdb9d6826d 100644 --- a/packages/propel/src/tooltip/root.tsx +++ b/packages/propel/src/tooltip/root.tsx @@ -1,6 +1,6 @@ import * as React from "react"; import { Tooltip as BaseTooltip } from "@base-ui-components/react/tooltip"; -import { cn } from "../utils/classname"; +import { cn } from "../utils"; import type { TPlacement, TSide, TAlign } from "../utils/placement"; import { convertPlacementToSideAndAlign } from "../utils/placement"; @@ -50,7 +50,7 @@ export function Tooltip(props: ITooltipProps) { - {tooltipHeading &&
{tooltipHeading}
} - {tooltipContent && tooltipContent} + {tooltipHeading &&
{tooltipHeading}
} + {tooltipContent &&
{tooltipContent}
} } />