mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
31 lines
647 B
Plaintext
31 lines
647 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`ButtonGroup Component should match snapshot 1`] = `
|
|
<div>
|
|
<div
|
|
class="someClassName"
|
|
style="color: red;"
|
|
>
|
|
<button
|
|
aria-checked="false"
|
|
class="button-group__button"
|
|
data-testid="button-group__button0"
|
|
>
|
|
<div
|
|
class="mockClass"
|
|
/>
|
|
</button>
|
|
<button
|
|
aria-checked="true"
|
|
class="button-group__button button-group__button--active"
|
|
data-testid="button-group__button1"
|
|
/>
|
|
<button
|
|
aria-checked="false"
|
|
class="button-group__button"
|
|
data-testid="button-group__button2"
|
|
/>
|
|
</div>
|
|
</div>
|
|
`;
|