adou-ui
Version:
feat:修复了TagInput无法清空的问题
24 lines (23 loc) • 735 B
TypeScript
import React, { ReactNode } from "react";
import "./index.scss";
interface TooltipProps {
left?: any;
right?: any;
top?: any;
bottom?: any;
wrap?: boolean;
width?: any;
arrowOffsetPercent?: number;
wrapperFlex?: boolean;
mustShow?: boolean;
show?: boolean;
text: ReactNode;
position?: "top" | "bottom" | "left" | "right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "left-top" | "left-bottom" | "right-bottom" | "right-top";
children: React.ReactNode;
tooltipBgc?: string;
tooltipFontColor?: string;
arrowBorderColor?: string;
wrapperClassname?: string;
}
declare const Tooltip: React.FC<TooltipProps>;
export default Tooltip;