interface TspComponentPopupProps {
  id: string;
  /**
   * 类名
   */
  className?: string;
  /**
   * 运动的方向, top: 从下到上
   */
  direction?: 'top' | 'left' | 'right' | 'bottom';
  /**
   * 关闭
   */
  onClose?: (e: any) => void;
}
