@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
9 lines (8 loc) • 406 B
TypeScript
export default function BaseTooltip({ clientPoint: clientPointCoords, children, placement, }: {
placement?: 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end';
clientPoint?: {
x: number;
y: number;
};
children: React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;