mixin renderCryptoSymbolSummary (currency) div(uk-grid).uk-grid-small.uk-flex-middle .uk-width-auto img(src=`/img/payment/${currency.sourceSymbol.toLowerCase()}.svg`, width="40", height="40") .uk-width-expand div span.uk-text-bold= currency.sourceSymbol span.uk-margin-small-left= numeral(currency.last).format('$0,0.00') span.uk-margin-small-left.uk-text-small(class={ 'uk-text-success': (currency.changes.price.day > 0), 'uk-text-danger': (currency.changes.price.day < 0), })= numeral(currency.changes.price.day).format('$0,0.00') .uk-text-small span bid: #{numeral(currency.bid).format('$0,0.00')} span.uk-margin-small-left ask: #{numeral(currency.ask).format('$0,0.00')}