@confi/conflux-react-ui-test-package
Version:
Modern and minimalist React UI library.
14 lines (13 loc) • 438 B
TypeScript
import React, { MutableRefObject } from 'react';
import { Placement, SnippetTypes } from '../utils/prop-types';
interface Props {
parent?: MutableRefObject<HTMLElement | null> | undefined;
placement: Placement;
type: SnippetTypes;
visible: boolean;
hideArrow: boolean;
offset: number;
className?: string;
}
declare const TooltipContent: React.FC<React.PropsWithChildren<Props>>;
export default TooltipContent;