UNPKG

@coin-voyage/paykit

Version:

Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.

20 lines (19 loc) 717 B
import type React from "react"; import { type Variants } from "framer-motion"; import { ROUTES } from "../../../types/routes"; export declare const contentVariants: Variants; type ModalProps = { pages: Record<ROUTES, React.ReactNode>; pageId: string; positionInside?: boolean; inline?: boolean; onClose?: () => void; onBack?: () => void; onInfo?: () => void; }; declare const Modal: ({ pages, pageId, positionInside, inline, onClose, onBack, onInfo, }: ModalProps) => import("react/jsx-runtime").JSX.Element; export declare const OrDivider: ({ children, hideHr }: { children?: React.ReactNode; hideHr?: boolean; }) => import("react/jsx-runtime").JSX.Element; export default Modal;