UNPKG

@dynamic-labs/sdk-react-core

Version:

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

8 lines (7 loc) 264 B
import React from 'react'; export type UserProfileSectionProps = { children: React.ReactNode; title?: string; action?: React.ReactNode; }; export declare const UserProfileSection: ({ title, children, action, }: UserProfileSectionProps) => JSX.Element;