Represents the properties for the FadeContainer component.

interface IFadeContainerProps {
    children: ReactNode;
    className?: string;
    color?: string;
    disableBottom?: boolean;
    disableRight?: boolean;
    Fade?: (__namedParameters: IDefaultFadeProps) => Element;
    selector?: string;
    style?: any;
    zIndex?: number;
}

Properties

children: ReactNode
className?: string
color?: string
disableBottom?: boolean
disableRight?: boolean
Fade?: (__namedParameters: IDefaultFadeProps) => Element

Type declaration

    • (__namedParameters: IDefaultFadeProps): Element
    • Represents a component that applies a fade effect to its background.

      Parameters

      • __namedParameters: IDefaultFadeProps

      Returns Element

selector?: string
style?: any
zIndex?: number