@kryptogo/kryptogokit-sdk-react
Version:
KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.
22 lines (21 loc) • 765 B
TypeScript
import React from 'react';
import { type BoxProps } from '../Box/Box';
type Size = 'small' | 'medium' | 'large';
export declare function ActionButton({ disabled, href, label, onClick, rel, size, target, testId, type, background, color, borderRadius, boxShadow, prefixIcon, style, }: {
href?: string;
label: string;
onClick?: () => void;
rel?: string;
size?: Size;
target?: string;
type?: 'primary' | 'secondary';
disabled?: boolean;
testId?: string;
background?: BoxProps['background'];
color?: BoxProps['color'];
borderRadius?: BoxProps['borderRadius'];
boxShadow?: BoxProps['boxShadow'];
prefixIcon?: React.ReactNode;
style?: React.CSSProperties;
}): import("react/jsx-runtime").JSX.Element;
export {};