mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
dcf79b0c99
* ButtonPrimary housekeeping * use sizes * update test and danger type
17 lines
624 B
Plaintext
17 lines
624 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`ButtonPrimary should render button element correctly 1`] = `
|
|
<div>
|
|
<button
|
|
class="box mm-button mm-button--size-md mm-button-primary 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-primary"
|
|
>
|
|
<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 Primary
|
|
</span>
|
|
</button>
|
|
</div>
|
|
`;
|