@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
12 lines (11 loc) • 613 B
TypeScript
import React, { type ReactNode } from 'react';
import { type BoxProps } from '../Box/Box';
interface FunOptionBoxProps extends Omit<BoxProps, 'className' | 'cursor' | 'tabIndex' | 'style'> {
isActive?: boolean;
paddingX?: BoxProps['paddingX'];
paddingY?: BoxProps['paddingY'];
type?: 'default' | 'bordered';
children: ReactNode;
}
export declare function FunOptionBox({ isActive, onClick, paddingX, paddingY, type, as, borderStyle, borderWidth, borderRadius, display, alignItems, gap, justifyContent, color, children, disabled, ...boxProps }: FunOptionBoxProps): React.JSX.Element;
export {};