UNPKG

@funkit/connect

Version:

Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.

14 lines (13 loc) 488 B
import React from 'react'; import { type BoxProps } from '../Box/Box'; type FunSkeletonBlockProps = { borderRadius?: BoxProps['borderRadius']; marginBottom?: BoxProps['marginBottom']; marginTop?: BoxProps['marginTop']; style?: BoxProps['style']; height: string; /** Defaults to full width */ width?: BoxProps['width']; }; export declare function FunSkeletonBlock({ width, borderRadius, height, ...props }: FunSkeletonBlockProps): React.JSX.Element; export {};