@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
11 lines (10 loc) • 358 B
TypeScript
import { FC, PropsWithChildren } from 'react';
type ModalCardProps = {
borderRadius?: 'default' | 'small';
border?: boolean;
/** Whether to display sharp border radius on last child in mobile */
sharpBottomRadiusOnMobile?: boolean;
dataTestId?: string;
};
export declare const ModalCard: FC<PropsWithChildren<ModalCardProps>>;
export {};