@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
14 lines (13 loc) • 643 B
TypeScript
import React, { type ReactNode } from 'react';
import { type FunNotificationBannerIconProps } from './FunNotificationBannerIcon';
interface FunNotificationBannerProps extends FunNotificationBannerIconProps {
title: string;
description: ReactNode;
/** Additional text-like content clarifying the description */
disclaimer?: ReactNode;
children?: ReactNode;
onClosed?: () => void;
onShowMore?: () => void;
}
export declare const FunNotificationBanner: ({ iconUrl, status, fallbackIconUrl, description, disclaimer, title, children, onClosed, onShowMore, }: FunNotificationBannerProps) => React.JSX.Element;
export {};