@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
10 lines (9 loc) • 568 B
TypeScript
import React from 'react';
import { type BoxProps } from '../Box/Box';
interface QRCodeSkeletonLoaderProps {
/** Dictates what square will be rendered, eg. diagonalDimension = 4 will render a 4x4 skeleton loader with 4 rows and 4 columns, diagonalDimension = 12 will render a 12x12 skeleton loader with 12 rows and 12 columns */
diagonalDimension?: number;
gapBetweenDots?: BoxProps['gap'];
}
declare const QRCodeSkeletonLoader: ({ diagonalDimension, gapBetweenDots, }: QRCodeSkeletonLoaderProps) => React.JSX.Element;
export default QRCodeSkeletonLoader;