UNPKG

slightning-coco-widget

Version:

SLIGHTNING 的 CoCo 控件框架。

9 lines (8 loc) 394 B
import type { FC, PropsWithChildren } from 'react'; import { NativeProps } from '../../utils/native-props'; import { PopupBaseProps } from './popup-base-props'; export declare type PopupProps = PopupBaseProps & PropsWithChildren<{ position?: 'bottom' | 'top' | 'left' | 'right'; closeOnSwipe?: boolean; }> & NativeProps<'--z-index'>; export declare const Popup: FC<PopupProps>;