///
import { TIconType } from '../Icon/collection';
export interface CryptoCardProps {
/**
* The background color of the crypto card
*/
bgColor: string;
/**
* The text shown in the button
*/
btnText?: string;
/**
* The name of the blockchain
*/
chain: 'arbitrum' | 'avalanche' | 'binance' | 'ethereum' | 'fantom' | 'polygon';
/**
* The type of the chain / a subtitle below the chain name
*/
chainType: string;
/**
* A function that will be called if the button is clicked
*/
onClick: (event: React.MouseEvent) => void;
/**
* The type of settings icon
*/
settingsIcon?: TIconType;
}