Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
connectkit / build / components / Common / Modal / index.d.ts
Size: Mime:
import React from 'react';
import { Variants } from 'framer-motion';
import { CustomTheme } from '../../../types';
export declare const contentVariants: Variants;
declare type ModalProps = {
    open: boolean | undefined;
    pages: any;
    pageId: string;
    positionInside?: boolean;
    inline?: boolean;
    onClose?: () => void | undefined;
    onBack?: () => void | undefined;
    onInfo?: () => void | undefined;
    demo?: {
        theme: string;
        mode?: string;
        customTheme: CustomTheme;
    };
};
declare const Modal: React.FC<ModalProps>;
export declare const OrDivider: ({ children }: {
    children?: React.ReactNode;
}) => JSX.Element;
export default Modal;