UNPKG

@funkit/connect

Version:

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

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