fix(ui-tooltip): prevent popup className override

This commit is contained in:
yyh 2026-03-02 18:21:56 +08:00
parent 4b3dceeda1
commit f5e32e533b
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export type TooltipContentProps = {
className?: string
popupClassName?: string
variant?: TooltipContentVariant
} & Omit<React.ComponentPropsWithoutRef<typeof BaseTooltip.Popup>, 'children'>
} & Omit<React.ComponentPropsWithoutRef<typeof BaseTooltip.Popup>, 'children' | 'className'>
export function TooltipContent({
children,