You can easily customize the cryptocurrecy icons on the checkout to be any size, color, style in CSS. A couple lines of CSS and the right markup will get you going in no time.
Code Example
/* Add colors to icons on checkout */
.mcc_currency_icons i.mcc-BTC {
color: #F7931A;
}
.mcc_currency_icons i.mcc-ETH {
color: #282828;
}
/* Change size of icons on checkout */
[class^="mcc-"] {
font-size: 22px !important;
}