@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
8 lines (7 loc) • 387 B
TypeScript
import React from 'react';
import { type BoxProps } from '../Box/Box';
export type FunSkeletonCircleProps = Pick<BoxProps, 'margin' | 'marginBottom' | 'marginLeft' | 'marginRight' | 'marginTop'> & {
/** Defaults to 20px */
size?: BoxProps['height'] & BoxProps['width'];
};
export declare function FunSkeletonCircle({ size, ...props }: FunSkeletonCircleProps): React.JSX.Element;