mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`ExchangeRateDisplay renders the component with initial props 1`] = `
|
|
<div>
|
|
<div
|
|
class="exchange-rate-display"
|
|
>
|
|
<div
|
|
class="box exchange-rate-display__quote-rate box--display-flex box--flex-direction-row box--justify-content-center box--align-items-center box--color-primary-default"
|
|
data-testid="exchange-rate-display-quote-rate"
|
|
>
|
|
<span>
|
|
1
|
|
</span>
|
|
<span
|
|
class="exchange-rate-display__bold"
|
|
data-testid="exchange-rate-display-base-symbol"
|
|
>
|
|
ETH
|
|
</span>
|
|
<span>
|
|
=
|
|
</span>
|
|
<span>
|
|
0.1
|
|
</span>
|
|
<span
|
|
class="exchange-rate-display__bold"
|
|
>
|
|
BAT
|
|
</span>
|
|
</div>
|
|
<span
|
|
class="box mm-icon mm-icon--size-md box--display-inline-block box--flex-direction-row box--color-icon-alternative"
|
|
data-testid="exchange-rate-display-switch"
|
|
style="mask-image: url('./images/icons/swap-horizontal.svg'); cursor: pointer;"
|
|
title="Switch"
|
|
/>
|
|
</div>
|
|
</div>
|
|
`;
|