UNPKG

@funkit/connect

Version:

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

15 lines (14 loc) 404 B
import React from 'react'; export interface BottomLink { text: string; href: string; } interface BottomLinksProps { links: BottomLink[]; } /** * A compact, centered footer row of text links separated by a dot * (e.g. `Terms • Help`). Each link opens in a new tab and brightens on hover. */ export declare const BottomLinks: ({ links }: BottomLinksProps) => React.JSX.Element; export {};