mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
9d59ec5f61
* BannerTip to TS * removing actionButtonProps control from storybook file * fixing console errors in storybook * BannerTip docs fixes, prop fixes and test updates --------- Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
33 lines
947 B
Plaintext
33 lines
947 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`BannerTip should render BannerTip element correctly 1`] = `
|
|
<div>
|
|
<div
|
|
class="mm-box mm-banner-base mm-banner-tip mm-box--padding-3 mm-box--display-flex mm-box--gap-2 mm-box--background-color-background-default mm-box--rounded-sm mm-box--border-color-border-default box--border-style-solid box--border-width-1"
|
|
data-testid="bannerTip"
|
|
>
|
|
<div
|
|
class="mm-box mm-box--display-flex mm-box--align-items-center"
|
|
>
|
|
<img
|
|
alt="greeting"
|
|
class="mm-box mm-banner-tip--logo"
|
|
src="images/fox-greeting.png"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<p
|
|
class="mm-box mm-text mm-text--body-lg-medium mm-box--color-text-default"
|
|
>
|
|
BannerTip test
|
|
</p>
|
|
<p
|
|
class="mm-box mm-text mm-text--body-md mm-box--color-text-default"
|
|
>
|
|
should render BannerTip element correctly
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|