@pareto-engineering/design-system 2.0.0-alpha.28 → 2.0.0-alpha.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/b/Logo/Logo.js +11 -4
- package/dist/cjs/c/ContentSlides/common/HorizontalMenu/HorizontalMenu.js +2 -2
- package/dist/es/b/Logo/Logo.js +11 -4
- package/dist/es/c/ContentSlides/common/HorizontalMenu/HorizontalMenu.js +2 -2
- package/package.json +1 -1
- package/src/__snapshots__/Storyshots.test.js.snap +33 -33
- package/src/ui/b/Logo/Logo.jsx +11 -3
- package/src/ui/c/ContentSlides/common/HorizontalMenu/HorizontalMenu.jsx +1 -1
package/dist/cjs/b/Logo/Logo.js
CHANGED
|
@@ -48,7 +48,8 @@ var Logo = _ref => {
|
|
|
48
48
|
color,
|
|
49
49
|
height,
|
|
50
50
|
width,
|
|
51
|
-
variant
|
|
51
|
+
variant,
|
|
52
|
+
strokeColor // ...otherProps
|
|
52
53
|
|
|
53
54
|
} = _ref;
|
|
54
55
|
(0, React.useLayoutEffect)(() => {
|
|
@@ -62,7 +63,7 @@ var Logo = _ref => {
|
|
|
62
63
|
targets: svgConfig.targets,
|
|
63
64
|
sprite: svgConfig.sprite,
|
|
64
65
|
id: id,
|
|
65
|
-
className: [baseClassName, componentClassName, "x-".concat(color), userClassName].filter(e => e).join(' '),
|
|
66
|
+
className: [baseClassName, componentClassName, "x-".concat(color), "y-".concat(strokeColor), userClassName].filter(e => e).join(' '),
|
|
66
67
|
style: style // {...otherProps}
|
|
67
68
|
|
|
68
69
|
});
|
|
@@ -102,12 +103,18 @@ Logo.propTypes = {
|
|
|
102
103
|
/**
|
|
103
104
|
* The variant to display. At the moment only `beta` is available.
|
|
104
105
|
*/
|
|
105
|
-
variant: _propTypes.default.string
|
|
106
|
+
variant: _propTypes.default.string,
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* The color of the svg stroke
|
|
110
|
+
*/
|
|
111
|
+
strokeColor: _propTypes.default.string
|
|
106
112
|
};
|
|
107
113
|
Logo.defaultProps = {
|
|
108
114
|
color: 'paragraph',
|
|
109
115
|
height: '2em',
|
|
110
|
-
variant: 'default'
|
|
116
|
+
variant: 'default',
|
|
117
|
+
strokeColor: 'transparent'
|
|
111
118
|
};
|
|
112
119
|
var _default = Logo;
|
|
113
120
|
exports.default = _default;
|
|
@@ -85,8 +85,8 @@ var HorizontalMenu = _ref => {
|
|
|
85
85
|
}, /*#__PURE__*/React.createElement("span", {
|
|
86
86
|
className: "md-h lg-h"
|
|
87
87
|
}, currentStep === null || currentStep === void 0 ? void 0 : currentStep.title), /*#__PURE__*/React.createElement(_b.Logo, {
|
|
88
|
-
className: "xs-h sm-h",
|
|
89
|
-
height: "
|
|
88
|
+
className: "xs-h sm-h y-transparent",
|
|
89
|
+
height: "1.1em",
|
|
90
90
|
color: logoColor
|
|
91
91
|
}))));
|
|
92
92
|
};
|
package/dist/es/b/Logo/Logo.js
CHANGED
|
@@ -32,7 +32,8 @@ const Logo = ({
|
|
|
32
32
|
color,
|
|
33
33
|
height,
|
|
34
34
|
width,
|
|
35
|
-
variant
|
|
35
|
+
variant,
|
|
36
|
+
strokeColor // ...otherProps
|
|
36
37
|
|
|
37
38
|
}) => {
|
|
38
39
|
useLayoutEffect(() => {
|
|
@@ -46,7 +47,7 @@ const Logo = ({
|
|
|
46
47
|
targets: svgConfig.targets,
|
|
47
48
|
sprite: svgConfig.sprite,
|
|
48
49
|
id: id,
|
|
49
|
-
className: [baseClassName, componentClassName, `x-${color}`, userClassName].filter(e => e).join(' '),
|
|
50
|
+
className: [baseClassName, componentClassName, `x-${color}`, `y-${strokeColor}`, userClassName].filter(e => e).join(' '),
|
|
50
51
|
style: style // {...otherProps}
|
|
51
52
|
|
|
52
53
|
});
|
|
@@ -86,11 +87,17 @@ Logo.propTypes = {
|
|
|
86
87
|
/**
|
|
87
88
|
* The variant to display. At the moment only `beta` is available.
|
|
88
89
|
*/
|
|
89
|
-
variant: PropTypes.string
|
|
90
|
+
variant: PropTypes.string,
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* The color of the svg stroke
|
|
94
|
+
*/
|
|
95
|
+
strokeColor: PropTypes.string
|
|
90
96
|
};
|
|
91
97
|
Logo.defaultProps = {
|
|
92
98
|
color: 'paragraph',
|
|
93
99
|
height: '2em',
|
|
94
|
-
variant: 'default'
|
|
100
|
+
variant: 'default',
|
|
101
|
+
strokeColor: 'transparent'
|
|
95
102
|
};
|
|
96
103
|
export default Logo;
|
|
@@ -65,8 +65,8 @@ const HorizontalMenu = ({
|
|
|
65
65
|
}, /*#__PURE__*/React.createElement("span", {
|
|
66
66
|
className: "md-h lg-h"
|
|
67
67
|
}, currentStep === null || currentStep === void 0 ? void 0 : currentStep.title), /*#__PURE__*/React.createElement(Logo, {
|
|
68
|
-
className: "xs-h sm-h",
|
|
69
|
-
height: "
|
|
68
|
+
className: "xs-h sm-h y-transparent",
|
|
69
|
+
height: "1.1em",
|
|
70
70
|
color: logoColor
|
|
71
71
|
}))));
|
|
72
72
|
};
|
package/package.json
CHANGED
|
@@ -6569,7 +6569,7 @@ exports[`Storyshots b/Card Group 1`] = `
|
|
|
6569
6569
|
|
|
6570
6570
|
exports[`Storyshots b/Logo Base 1`] = `
|
|
6571
6571
|
<svg
|
|
6572
|
-
className="base svg base logo x-paragraph"
|
|
6572
|
+
className="base svg base logo x-paragraph y-transparent"
|
|
6573
6573
|
height="2em"
|
|
6574
6574
|
preserveAspectRatio="xMinYMin meet"
|
|
6575
6575
|
version="1.1"
|
|
@@ -6602,7 +6602,7 @@ exports[`Storyshots b/Logo Base 1`] = `
|
|
|
6602
6602
|
exports[`Storyshots b/Logo Color 1`] = `
|
|
6603
6603
|
Array [
|
|
6604
6604
|
<svg
|
|
6605
|
-
className="base svg base logo x-main1"
|
|
6605
|
+
className="base svg base logo x-main1 y-transparent"
|
|
6606
6606
|
height="2em"
|
|
6607
6607
|
preserveAspectRatio="xMinYMin meet"
|
|
6608
6608
|
version="1.1"
|
|
@@ -6631,7 +6631,7 @@ Array [
|
|
|
6631
6631
|
/>
|
|
6632
6632
|
</svg>,
|
|
6633
6633
|
<svg
|
|
6634
|
-
className="base svg base logo x-main2"
|
|
6634
|
+
className="base svg base logo x-main2 y-transparent"
|
|
6635
6635
|
height="2em"
|
|
6636
6636
|
preserveAspectRatio="xMinYMin meet"
|
|
6637
6637
|
version="1.1"
|
|
@@ -6660,7 +6660,7 @@ Array [
|
|
|
6660
6660
|
/>
|
|
6661
6661
|
</svg>,
|
|
6662
6662
|
<svg
|
|
6663
|
-
className="base svg base logo x-main3"
|
|
6663
|
+
className="base svg base logo x-main3 y-transparent"
|
|
6664
6664
|
height="2em"
|
|
6665
6665
|
preserveAspectRatio="xMinYMin meet"
|
|
6666
6666
|
version="1.1"
|
|
@@ -6689,7 +6689,7 @@ Array [
|
|
|
6689
6689
|
/>
|
|
6690
6690
|
</svg>,
|
|
6691
6691
|
<svg
|
|
6692
|
-
className="base svg base logo x-main4"
|
|
6692
|
+
className="base svg base logo x-main4 y-transparent"
|
|
6693
6693
|
height="2em"
|
|
6694
6694
|
preserveAspectRatio="xMinYMin meet"
|
|
6695
6695
|
version="1.1"
|
|
@@ -6718,7 +6718,7 @@ Array [
|
|
|
6718
6718
|
/>
|
|
6719
6719
|
</svg>,
|
|
6720
6720
|
<svg
|
|
6721
|
-
className="base svg base logo x-success"
|
|
6721
|
+
className="base svg base logo x-success y-transparent"
|
|
6722
6722
|
height="2em"
|
|
6723
6723
|
preserveAspectRatio="xMinYMin meet"
|
|
6724
6724
|
version="1.1"
|
|
@@ -6747,7 +6747,7 @@ Array [
|
|
|
6747
6747
|
/>
|
|
6748
6748
|
</svg>,
|
|
6749
6749
|
<svg
|
|
6750
|
-
className="base svg base logo x-warning"
|
|
6750
|
+
className="base svg base logo x-warning y-transparent"
|
|
6751
6751
|
height="2em"
|
|
6752
6752
|
preserveAspectRatio="xMinYMin meet"
|
|
6753
6753
|
version="1.1"
|
|
@@ -6776,7 +6776,7 @@ Array [
|
|
|
6776
6776
|
/>
|
|
6777
6777
|
</svg>,
|
|
6778
6778
|
<svg
|
|
6779
|
-
className="base svg base logo x-error"
|
|
6779
|
+
className="base svg base logo x-error y-transparent"
|
|
6780
6780
|
height="2em"
|
|
6781
6781
|
preserveAspectRatio="xMinYMin meet"
|
|
6782
6782
|
version="1.1"
|
|
@@ -6805,7 +6805,7 @@ Array [
|
|
|
6805
6805
|
/>
|
|
6806
6806
|
</svg>,
|
|
6807
6807
|
<svg
|
|
6808
|
-
className="base svg base logo x-background1"
|
|
6808
|
+
className="base svg base logo x-background1 y-transparent"
|
|
6809
6809
|
height="2em"
|
|
6810
6810
|
preserveAspectRatio="xMinYMin meet"
|
|
6811
6811
|
version="1.1"
|
|
@@ -6834,7 +6834,7 @@ Array [
|
|
|
6834
6834
|
/>
|
|
6835
6835
|
</svg>,
|
|
6836
6836
|
<svg
|
|
6837
|
-
className="base svg base logo x-background2"
|
|
6837
|
+
className="base svg base logo x-background2 y-transparent"
|
|
6838
6838
|
height="2em"
|
|
6839
6839
|
preserveAspectRatio="xMinYMin meet"
|
|
6840
6840
|
version="1.1"
|
|
@@ -6863,7 +6863,7 @@ Array [
|
|
|
6863
6863
|
/>
|
|
6864
6864
|
</svg>,
|
|
6865
6865
|
<svg
|
|
6866
|
-
className="base svg base logo x-background3"
|
|
6866
|
+
className="base svg base logo x-background3 y-transparent"
|
|
6867
6867
|
height="2em"
|
|
6868
6868
|
preserveAspectRatio="xMinYMin meet"
|
|
6869
6869
|
version="1.1"
|
|
@@ -6892,7 +6892,7 @@ Array [
|
|
|
6892
6892
|
/>
|
|
6893
6893
|
</svg>,
|
|
6894
6894
|
<svg
|
|
6895
|
-
className="base svg base logo x-background4"
|
|
6895
|
+
className="base svg base logo x-background4 y-transparent"
|
|
6896
6896
|
height="2em"
|
|
6897
6897
|
preserveAspectRatio="xMinYMin meet"
|
|
6898
6898
|
version="1.1"
|
|
@@ -6921,7 +6921,7 @@ Array [
|
|
|
6921
6921
|
/>
|
|
6922
6922
|
</svg>,
|
|
6923
6923
|
<svg
|
|
6924
|
-
className="base svg base logo x-background5"
|
|
6924
|
+
className="base svg base logo x-background5 y-transparent"
|
|
6925
6925
|
height="2em"
|
|
6926
6926
|
preserveAspectRatio="xMinYMin meet"
|
|
6927
6927
|
version="1.1"
|
|
@@ -6950,7 +6950,7 @@ Array [
|
|
|
6950
6950
|
/>
|
|
6951
6951
|
</svg>,
|
|
6952
6952
|
<svg
|
|
6953
|
-
className="base svg base logo x-background6"
|
|
6953
|
+
className="base svg base logo x-background6 y-transparent"
|
|
6954
6954
|
height="2em"
|
|
6955
6955
|
preserveAspectRatio="xMinYMin meet"
|
|
6956
6956
|
version="1.1"
|
|
@@ -6979,7 +6979,7 @@ Array [
|
|
|
6979
6979
|
/>
|
|
6980
6980
|
</svg>,
|
|
6981
6981
|
<svg
|
|
6982
|
-
className="base svg base logo x-heading"
|
|
6982
|
+
className="base svg base logo x-heading y-transparent"
|
|
6983
6983
|
height="2em"
|
|
6984
6984
|
preserveAspectRatio="xMinYMin meet"
|
|
6985
6985
|
version="1.1"
|
|
@@ -7008,7 +7008,7 @@ Array [
|
|
|
7008
7008
|
/>
|
|
7009
7009
|
</svg>,
|
|
7010
7010
|
<svg
|
|
7011
|
-
className="base svg base logo x-paragraph"
|
|
7011
|
+
className="base svg base logo x-paragraph y-transparent"
|
|
7012
7012
|
height="2em"
|
|
7013
7013
|
preserveAspectRatio="xMinYMin meet"
|
|
7014
7014
|
version="1.1"
|
|
@@ -7037,7 +7037,7 @@ Array [
|
|
|
7037
7037
|
/>
|
|
7038
7038
|
</svg>,
|
|
7039
7039
|
<svg
|
|
7040
|
-
className="base svg base logo x-subtitle"
|
|
7040
|
+
className="base svg base logo x-subtitle y-transparent"
|
|
7041
7041
|
height="2em"
|
|
7042
7042
|
preserveAspectRatio="xMinYMin meet"
|
|
7043
7043
|
version="1.1"
|
|
@@ -7066,7 +7066,7 @@ Array [
|
|
|
7066
7066
|
/>
|
|
7067
7067
|
</svg>,
|
|
7068
7068
|
<svg
|
|
7069
|
-
className="base svg base logo x-metadata"
|
|
7069
|
+
className="base svg base logo x-metadata y-transparent"
|
|
7070
7070
|
height="2em"
|
|
7071
7071
|
preserveAspectRatio="xMinYMin meet"
|
|
7072
7072
|
version="1.1"
|
|
@@ -7095,7 +7095,7 @@ Array [
|
|
|
7095
7095
|
/>
|
|
7096
7096
|
</svg>,
|
|
7097
7097
|
<svg
|
|
7098
|
-
className="base svg base logo x-link"
|
|
7098
|
+
className="base svg base logo x-link y-transparent"
|
|
7099
7099
|
height="2em"
|
|
7100
7100
|
preserveAspectRatio="xMinYMin meet"
|
|
7101
7101
|
version="1.1"
|
|
@@ -7124,7 +7124,7 @@ Array [
|
|
|
7124
7124
|
/>
|
|
7125
7125
|
</svg>,
|
|
7126
7126
|
<svg
|
|
7127
|
-
className="base svg base logo x-navlink"
|
|
7127
|
+
className="base svg base logo x-navlink y-transparent"
|
|
7128
7128
|
height="2em"
|
|
7129
7129
|
preserveAspectRatio="xMinYMin meet"
|
|
7130
7130
|
version="1.1"
|
|
@@ -7153,7 +7153,7 @@ Array [
|
|
|
7153
7153
|
/>
|
|
7154
7154
|
</svg>,
|
|
7155
7155
|
<svg
|
|
7156
|
-
className="base svg base logo x-twitter"
|
|
7156
|
+
className="base svg base logo x-twitter y-transparent"
|
|
7157
7157
|
height="2em"
|
|
7158
7158
|
preserveAspectRatio="xMinYMin meet"
|
|
7159
7159
|
version="1.1"
|
|
@@ -7182,7 +7182,7 @@ Array [
|
|
|
7182
7182
|
/>
|
|
7183
7183
|
</svg>,
|
|
7184
7184
|
<svg
|
|
7185
|
-
className="base svg base logo x-facebook"
|
|
7185
|
+
className="base svg base logo x-facebook y-transparent"
|
|
7186
7186
|
height="2em"
|
|
7187
7187
|
preserveAspectRatio="xMinYMin meet"
|
|
7188
7188
|
version="1.1"
|
|
@@ -7211,7 +7211,7 @@ Array [
|
|
|
7211
7211
|
/>
|
|
7212
7212
|
</svg>,
|
|
7213
7213
|
<svg
|
|
7214
|
-
className="base svg base logo x-instagram"
|
|
7214
|
+
className="base svg base logo x-instagram y-transparent"
|
|
7215
7215
|
height="2em"
|
|
7216
7216
|
preserveAspectRatio="xMinYMin meet"
|
|
7217
7217
|
version="1.1"
|
|
@@ -7240,7 +7240,7 @@ Array [
|
|
|
7240
7240
|
/>
|
|
7241
7241
|
</svg>,
|
|
7242
7242
|
<svg
|
|
7243
|
-
className="base svg base logo x-google"
|
|
7243
|
+
className="base svg base logo x-google y-transparent"
|
|
7244
7244
|
height="2em"
|
|
7245
7245
|
preserveAspectRatio="xMinYMin meet"
|
|
7246
7246
|
version="1.1"
|
|
@@ -7269,7 +7269,7 @@ Array [
|
|
|
7269
7269
|
/>
|
|
7270
7270
|
</svg>,
|
|
7271
7271
|
<svg
|
|
7272
|
-
className="base svg base logo x-black"
|
|
7272
|
+
className="base svg base logo x-black y-transparent"
|
|
7273
7273
|
height="2em"
|
|
7274
7274
|
preserveAspectRatio="xMinYMin meet"
|
|
7275
7275
|
version="1.1"
|
|
@@ -7298,7 +7298,7 @@ Array [
|
|
|
7298
7298
|
/>
|
|
7299
7299
|
</svg>,
|
|
7300
7300
|
<svg
|
|
7301
|
-
className="base svg base logo x-anchor"
|
|
7301
|
+
className="base svg base logo x-anchor y-transparent"
|
|
7302
7302
|
height="2em"
|
|
7303
7303
|
preserveAspectRatio="xMinYMin meet"
|
|
7304
7304
|
version="1.1"
|
|
@@ -7327,7 +7327,7 @@ Array [
|
|
|
7327
7327
|
/>
|
|
7328
7328
|
</svg>,
|
|
7329
7329
|
<svg
|
|
7330
|
-
className="base svg base logo x-grey"
|
|
7330
|
+
className="base svg base logo x-grey y-transparent"
|
|
7331
7331
|
height="2em"
|
|
7332
7332
|
preserveAspectRatio="xMinYMin meet"
|
|
7333
7333
|
version="1.1"
|
|
@@ -7356,7 +7356,7 @@ Array [
|
|
|
7356
7356
|
/>
|
|
7357
7357
|
</svg>,
|
|
7358
7358
|
<svg
|
|
7359
|
-
className="base svg base logo x-pearl"
|
|
7359
|
+
className="base svg base logo x-pearl y-transparent"
|
|
7360
7360
|
height="2em"
|
|
7361
7361
|
preserveAspectRatio="xMinYMin meet"
|
|
7362
7362
|
version="1.1"
|
|
@@ -7385,7 +7385,7 @@ Array [
|
|
|
7385
7385
|
/>
|
|
7386
7386
|
</svg>,
|
|
7387
7387
|
<svg
|
|
7388
|
-
className="base svg base logo x-white"
|
|
7388
|
+
className="base svg base logo x-white y-transparent"
|
|
7389
7389
|
height="2em"
|
|
7390
7390
|
preserveAspectRatio="xMinYMin meet"
|
|
7391
7391
|
version="1.1"
|
|
@@ -8148,7 +8148,7 @@ exports[`Storyshots c/ContentSlides Base 1`] = `
|
|
|
8148
8148
|
>
|
|
8149
8149
|
<header>
|
|
8150
8150
|
<svg
|
|
8151
|
-
className="base svg base logo x-paragraph"
|
|
8151
|
+
className="base svg base logo x-paragraph y-transparent"
|
|
8152
8152
|
height="2em"
|
|
8153
8153
|
preserveAspectRatio="xMinYMin meet"
|
|
8154
8154
|
version="1.1"
|
|
@@ -8280,7 +8280,7 @@ exports[`Storyshots c/ContentSlides Base 1`] = `
|
|
|
8280
8280
|
Welcome
|
|
8281
8281
|
</span>
|
|
8282
8282
|
<svg
|
|
8283
|
-
className="base svg base logo x-paragraph xs-h sm-h"
|
|
8283
|
+
className="base svg base logo x-paragraph y-transparent xs-h sm-h"
|
|
8284
8284
|
height="2em"
|
|
8285
8285
|
preserveAspectRatio="xMinYMin meet"
|
|
8286
8286
|
version="1.1"
|
|
@@ -8523,7 +8523,7 @@ exports[`Storyshots c/ContentSlides Simple 1`] = `
|
|
|
8523
8523
|
Welcome
|
|
8524
8524
|
</span>
|
|
8525
8525
|
<svg
|
|
8526
|
-
className="base svg base logo x-paragraph xs-h sm-h"
|
|
8526
|
+
className="base svg base logo x-paragraph y-transparent xs-h sm-h"
|
|
8527
8527
|
height="2em"
|
|
8528
8528
|
preserveAspectRatio="xMinYMin meet"
|
|
8529
8529
|
version="1.1"
|
|
@@ -8792,7 +8792,7 @@ exports[`Storyshots c/ContentSlides With Background Shape 1`] = `
|
|
|
8792
8792
|
Welcome
|
|
8793
8793
|
</span>
|
|
8794
8794
|
<svg
|
|
8795
|
-
className="base svg base logo x-paragraph xs-h sm-h"
|
|
8795
|
+
className="base svg base logo x-paragraph y-transparent xs-h sm-h"
|
|
8796
8796
|
height="2em"
|
|
8797
8797
|
preserveAspectRatio="xMinYMin meet"
|
|
8798
8798
|
version="1.1"
|
package/src/ui/b/Logo/Logo.jsx
CHANGED
|
@@ -45,6 +45,7 @@ const Logo = ({
|
|
|
45
45
|
height,
|
|
46
46
|
width,
|
|
47
47
|
variant,
|
|
48
|
+
strokeColor,
|
|
48
49
|
// ...otherProps
|
|
49
50
|
}) => {
|
|
50
51
|
useLayoutEffect(() => {
|
|
@@ -65,6 +66,7 @@ const Logo = ({
|
|
|
65
66
|
baseClassName,
|
|
66
67
|
componentClassName,
|
|
67
68
|
`x-${color}`,
|
|
69
|
+
`y-${strokeColor}`,
|
|
68
70
|
userClassName,
|
|
69
71
|
]
|
|
70
72
|
.filter((e) => e)
|
|
@@ -110,12 +112,18 @@ Logo.propTypes = {
|
|
|
110
112
|
* The variant to display. At the moment only `beta` is available.
|
|
111
113
|
*/
|
|
112
114
|
variant:PropTypes.string,
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* The color of the svg stroke
|
|
118
|
+
*/
|
|
119
|
+
strokeColor:PropTypes.string,
|
|
113
120
|
}
|
|
114
121
|
|
|
115
122
|
Logo.defaultProps = {
|
|
116
|
-
color
|
|
117
|
-
height
|
|
118
|
-
variant:'default',
|
|
123
|
+
color :'paragraph',
|
|
124
|
+
height :'2em',
|
|
125
|
+
variant :'default',
|
|
126
|
+
strokeColor:'transparent',
|
|
119
127
|
}
|
|
120
128
|
|
|
121
129
|
export default Logo
|
|
@@ -79,7 +79,7 @@ const HorizontalMenu = ({
|
|
|
79
79
|
<span className="md-h lg-h">
|
|
80
80
|
{ currentStep?.title }
|
|
81
81
|
</span>
|
|
82
|
-
<Logo className="xs-h sm-h" height="
|
|
82
|
+
<Logo className="xs-h sm-h y-transparent" height="1.1em" color={logoColor} />
|
|
83
83
|
</div>
|
|
84
84
|
{/*
|
|
85
85
|
<div className="right">
|