UNPKG

@dynamic-labs/sdk-react-core

Version:

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

12 lines (11 loc) 438 B
import { FC } from 'react'; import { CopyKey } from '../../shared'; import { ButtonProps } from '../Button'; import { TypographyProps } from '../Typography/Typography.types'; export type TypographyButtonProps = ButtonProps & { typographyProps?: Omit<TypographyProps, 'as'>; leading?: JSX.Element; trailing?: JSX.Element; description?: string; } & CopyKey; export declare const TypographyButton: FC<TypographyButtonProps>;