UNPKG

@funkit/connect

Version:

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

8 lines (7 loc) 248 B
import React from 'react'; export type InfoBannerProps = { message: string; type: 'warning' | 'alert' | 'announcement'; expireAtMs?: number; }; export declare const InfoBanner: ({ message, type }: InfoBannerProps) => React.JSX.Element;