You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
547 B
15 lines
547 B
import * as React from 'react';
|
|
import type { MenuMode } from '../interface';
|
|
export interface PopupTriggerProps {
|
|
prefixCls: string;
|
|
mode: MenuMode;
|
|
visible: boolean;
|
|
children: React.ReactElement;
|
|
popup: React.ReactNode;
|
|
popupClassName?: string;
|
|
popupOffset?: number[];
|
|
disabled: boolean;
|
|
onVisibleChange: (visible: boolean) => void;
|
|
}
|
|
export default function PopupTrigger({ prefixCls, visible, children, popup, popupClassName, popupOffset, disabled, mode, onVisibleChange, }: PopupTriggerProps): JSX.Element;
|