mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
8bdf820c70
* button base housekeeping * add pixel size to description * snapshot update
17 lines
616 B
Plaintext
17 lines
616 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`ButtonBase should render button element correctly and match snapshot 1`] = `
|
|
<div>
|
|
<button
|
|
class="box mm-button mm-button--size-md box--padding-right-4 box--padding-left-4 box--display-inline-flex box--flex-direction-row box--justify-content-center box--align-items-center"
|
|
data-testid="button-base"
|
|
>
|
|
<span
|
|
class="box text mm-button__content text--body-md text--color-inherit box--gap-2 box--flex-direction-row box--justify-content-center box--align-items-center box--display-flex"
|
|
>
|
|
Button base
|
|
</span>
|
|
</button>
|
|
</div>
|
|
`;
|