UNPKG

vantui-edit

Version:

一套适用于Taro3及React的vantui组件库

16 lines (14 loc) 404 B
import { ViewProps } from '@tarojs/components' import { FunctionComponent, ReactNode } from 'react' export interface OverlayProps extends ViewProps { show?: boolean lockScroll?: boolean zIndex?: number duration?: | string | number | { enter: string | number; leave: string | number } children?: ReactNode } declare const Overlay: FunctionComponent<OverlayProps> export { Overlay }