UNPKG

@funkit/connect

Version:

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

11 lines (10 loc) 450 B
import React from 'react'; import { type FunButtonProps } from '../FunButton/FunButton'; export interface FunBottomBarProps { topSection?: React.ReactNode; topSectionVisible?: boolean; actionButtonProps?: FunButtonProps; onClose?: () => void; onCloseLabel?: string; } export declare const FunBottomBar: ({ topSection, topSectionVisible, actionButtonProps, onClose, onCloseLabel, }: FunBottomBarProps) => React.JSX.Element | null;