UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

15 lines (14 loc) 482 B
import { ReactElement } from 'react'; type Props = { titleKey: string; descriptionKey: string; description: string; badgeKey: string; badgeVariant: 'primary' | 'secondary'; action: VoidFunction; LeadingIcon: ReactElement; isLoading: boolean; dataTestId?: string; }; export declare const ActionCard: ({ titleKey, descriptionKey, description, LeadingIcon, action, badgeVariant, badgeKey, isLoading, dataTestId, }: Props) => JSX.Element; export {};