y-taro-ui
Version:
基于taro的表单解决方案 & 基础组件
20 lines (19 loc) • 692 B
TypeScript
import React from 'react';
import { InternalCSSTransitionProps } from '../InternalCSSTransition';
import { PopupContextProps } from './context';
import './index.less';
export declare type PopupProps = PopupContextProps & InternalCSSTransitionProps & {
style?: React.CSSProperties;
className?: string;
children: React.ReactNode;
title?: React.ReactNode;
closable?: boolean;
maskClosable?: boolean;
destroyOnClose?: boolean;
closeIcon?: React.ReactNode;
catchMove?: boolean;
contentStyle?: React.CSSProperties;
contentClassName?: string;
};
export declare const Popup: React.NamedExoticComponent<PopupProps>;
export default Popup;