@quanxi/ui
Version:
全悉组件库
16 lines (15 loc) • 422 B
TypeScript
import React from 'react';
interface TooltipEleProps {
content: string | React.ReactNode;
left: number;
top: number;
width: number;
height: number;
cRef: React.RefObject<any>;
align?: string;
color?: string;
zIndex?: number;
}
declare function TooltipEl(props: TooltipEleProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof TooltipEl>;
export default _default;