UNPKG

@funkit/connect

Version:

Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.

16 lines (15 loc) 719 B
import React, { type ReactNode } from 'react'; import type { FunButtonProps } from '../../../components/FunButton/FunButton'; import { type ErrorNotification } from '../../../components/FunNotification/FunNotification'; interface InputAmountLayoutProps { actionButtonProps: FunButtonProps; fiatCurrencySelector?: ReactNode; amountOptions?: ReactNode; amountInput: ReactNode; amountInputSwitch: ReactNode; header?: ReactNode; footer?: ReactNode; error?: ErrorNotification; } export declare function InputAmountLayout({ actionButtonProps, amountOptions, fiatCurrencySelector, amountInput, amountInputSwitch, header, footer, error, }: InputAmountLayoutProps): React.JSX.Element; export {};