import { type PropsWithChildren, type CSSProperties } from 'react'; import { type PopperProps, Popper } from '../popper'; import { PopoverContainer, placementToContainerDirection } from '../popover'; import type { TooltipProps } from './interface'; import { useTheme } from '../theme'; const useTooltipStyle = (): CSSProperties => { const theme = useTheme(); return { backgroundColor: theme.affine.palette.icons, color: theme.affine.palette.white, ...theme.affine.typography.tooltip, padding: '4px 8px', }; }; export const Tooltip = ( props: PropsWithChildren ) => { const { content, placement = 'top-start' } = props; const style = useTooltipStyle(); // If there is no content, hide forever const visibleProp = content ? {} : { visible: false }; return ( {content} } /> ); };