@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
13 lines (12 loc) • 444 B
TypeScript
import React, { type ReactNode } from 'react';
import { type BoxProps } from '../Box/Box';
interface FunAlertProps {
icon?: ReactNode;
description: ReactNode;
type?: 'info' | 'error';
verticalAlignment?: 'top' | 'center';
paddingX?: BoxProps['paddingX'];
testId?: string;
}
export declare function FunAlert({ icon, description, type, verticalAlignment, paddingX, testId, }: FunAlertProps): React.JSX.Element;
export {};