UNPKG

slightning-coco-widget

Version:

SLIGHTNING 的 CoCo 控件框架。

8 lines (7 loc) 432 B
import type { FC, PropsWithChildren } from 'react'; import { NativeProps } from '../../utils/native-props'; import { PopupBaseProps } from '../popup/popup-base-props'; export declare type CenterPopupProps = PopupBaseProps & PropsWithChildren<{ role?: string; }> & NativeProps<'--background-color' | '--border-radius' | '--max-width' | '--min-width' | '--z-index'>; export declare const CenterPopup: FC<CenterPopupProps>;