UNPKG

@kryptogo/kryptogokit-sdk-react

Version:

KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.

14 lines (13 loc) 553 B
import React, { type ReactNode } from 'react'; import { type BoxProps } from '../Box/Box'; interface DialogContentProps { children: ReactNode; bottomSheetOnMobile?: boolean; padding?: BoxProps['padding']; paddingBottom?: BoxProps['paddingBottom']; marginTop?: BoxProps['marginTop']; wide?: boolean; style?: React.CSSProperties; } export declare function DialogContent({ bottomSheetOnMobile, children, marginTop, padding, paddingBottom, wide, style, }: DialogContentProps): import("react/jsx-runtime").JSX.Element; export {};