UNPKG

@dynamic-labs/sdk-react-core

Version:

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

13 lines (12 loc) 386 B
/// <reference types="react" /> import { Icon } from '../../shared'; type Props = { Icon: Icon; className?: string; content?: string | JSX.Element; iconClassName?: string; textClassName?: string; title: string | JSX.Element; }; export declare const InfoItem: ({ title, content, Icon, className, iconClassName, textClassName, }: Props) => JSX.Element; export {};