adou-ui
Version:
feat:修复了TagInput无法清空的问题
17 lines (16 loc) • 421 B
TypeScript
import React from "react";
import "./index.scss";
interface PopoverProps {
ref?: any;
show?: boolean;
content: any;
position?: "top" | "bottom" | "left" | "right";
children: React.ReactNode;
bgc?: string;
color?: string;
borderColor?: string;
wrapperClassname?: string;
onClose?: () => void;
}
declare const Popover: React.FC<PopoverProps>;
export default Popover;