@daimo/pay
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
12 lines (11 loc) • 642 B
TypeScript
import { EasingFunction } from "framer-motion";
export type Easing = [number, number, number, number] | "linear" | "easeIn" | "easeOut" | "easeInOut" | "circIn" | "circOut" | "circInOut" | "backIn" | "backOut" | "backInOut" | "anticipate" | EasingFunction;
type Slide = {
layoutId?: string;
duration: number;
ease: Easing;
};
export declare const SlideOne: ({ layoutId }: Slide) => import("react/jsx-runtime").JSX.Element;
export declare const SlideTwo: ({ layoutId }: Slide) => import("react/jsx-runtime").JSX.Element;
export declare const SlideThree: ({ layoutId }: Slide) => import("react/jsx-runtime").JSX.Element;
export {};