UNPKG

rc-trigger

Version:

base abstract trigger component for react

14 lines (13 loc) 444 B
/// <reference types="react" /> import type { CSSMotionProps } from 'rc-motion'; import type { TransitionNameType, AnimationType } from '../interface'; export interface MaskProps { prefixCls: string; visible?: boolean; zIndex?: number; mask?: boolean; maskMotion?: CSSMotionProps; maskAnimation?: AnimationType; maskTransitionName?: TransitionNameType; } export default function Mask(props: MaskProps): JSX.Element;