UNPKG

@funkit/connect

Version:

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

19 lines (18 loc) 670 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']; /** Defaults to full width */ width?: BoxProps['width']; } & ({ fontSize?: never; height: Exclude<BoxProps['height'], undefined> | `${number}px`; } | { fontSize: Exclude<BoxProps['fontSize'], undefined | 'inherit'>; height?: never; }); export declare function FunSkeletonBlock({ borderRadius, fontSize, height, width, ...props }: FunSkeletonBlockProps): React.JSX.Element; export {};