mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
ed5b78d61b
* add header base component * fix resizing issue * add center * add demo * header base using flexbox * fix button issue * header base clean up * update tests * add readme description * add docs * update snapshot * add more to readme * convert to TS * fix file name * fix types and colors * fix classname error * fix boxprops import * fix boxprops * prop fix * fix errors * Update ui/components/component-library/header-base/header-base.stories.tsx Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/component-library/header-base/header-base.types.ts Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/component-library/header-base/header-base.types.ts Co-authored-by: George Marshall <george.marshall@consensys.net> * headerbase fixes * fix export * remove Math.max * change order for index on storybook to prep build * revert back to order * remove type from export * add type to export * change export of headerbase function * export update * revert back to normal * add type to export * Removing interface export from index --------- Co-authored-by: George Marshall <george.marshall@consensys.net>
18 lines
475 B
Plaintext
18 lines
475 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`HeaderBase should render HeaderBase element correctly 1`] = `
|
|
<div>
|
|
<div
|
|
class="box mm-header-base box--display-flex box--flex-direction-row box--justify-content-space-between"
|
|
data-testid="header-base"
|
|
title="HeaderBase test"
|
|
>
|
|
<div
|
|
class="box mm-header-base__children box--flex-direction-row box--width-full"
|
|
>
|
|
should render HeaderBase element correctly
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|