@paypal/checkout-components 5.0.256 → 5.0.258
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/README.md +8 -0
- package/__sdk__.js +72 -76
- package/dist/button.js +1 -1
- package/globals.js +28 -30
- package/package.json +6 -4
- package/src/constants/button.js +37 -36
- package/src/constants/class.js +32 -30
- package/src/constants/index.js +3 -3
- package/src/constants/misc.js +14 -12
- package/src/declarations.js +19 -19
- package/src/funding/applepay/config.jsx +51 -50
- package/src/funding/applepay/index.js +1 -1
- package/src/funding/applepay/style.scoped.scss +1 -1
- package/src/funding/applepay/template.jsx +16 -11
- package/src/funding/bancontact/config.jsx +48 -37
- package/src/funding/bancontact/index.js +1 -2
- package/src/funding/blik/config.jsx +48 -37
- package/src/funding/blik/index.js +1 -2
- package/src/funding/boleto/config.jsx +50 -39
- package/src/funding/boleto/index.js +1 -2
- package/src/funding/card/amex/config.js +9 -8
- package/src/funding/card/amex/index.js +1 -2
- package/src/funding/card/config.jsx +246 -177
- package/src/funding/card/discover/config.js +9 -7
- package/src/funding/card/discover/index.js +1 -2
- package/src/funding/card/elo/config.js +6 -7
- package/src/funding/card/elo/index.js +1 -2
- package/src/funding/card/hiper/config.js +9 -7
- package/src/funding/card/hiper/index.js +1 -2
- package/src/funding/card/index.js +1 -1
- package/src/funding/card/jcb/config.js +6 -7
- package/src/funding/card/jcb/index.js +1 -2
- package/src/funding/card/mastercard/config.js +9 -7
- package/src/funding/card/mastercard/index.js +1 -2
- package/src/funding/card/visa/config.js +9 -7
- package/src/funding/card/visa/index.js +1 -2
- package/src/funding/common.jsx +242 -216
- package/src/funding/config.js +212 -65
- package/src/funding/content.jsx +1946 -337
- package/src/funding/credit/config.jsx +74 -57
- package/src/funding/credit/index.js +1 -2
- package/src/funding/eps/config.jsx +45 -37
- package/src/funding/eps/index.js +1 -2
- package/src/funding/funding.js +193 -100
- package/src/funding/giropay/config.jsx +48 -38
- package/src/funding/giropay/index.js +1 -2
- package/src/funding/ideal/config.jsx +48 -37
- package/src/funding/ideal/index.js +1 -2
- package/src/funding/index.js +2 -2
- package/src/funding/itau/config.jsx +41 -41
- package/src/funding/itau/index.js +1 -1
- package/src/funding/maxima/config.jsx +25 -19
- package/src/funding/maxima/index.js +1 -2
- package/src/funding/mercadopago/config.jsx +48 -37
- package/src/funding/mercadopago/index.js +1 -2
- package/src/funding/multibanco/config.jsx +50 -39
- package/src/funding/multibanco/index.js +1 -2
- package/src/funding/mybank/config.jsx +48 -37
- package/src/funding/mybank/index.js +1 -2
- package/src/funding/oxxo/config.jsx +50 -39
- package/src/funding/oxxo/index.js +1 -2
- package/src/funding/p24/config.jsx +45 -37
- package/src/funding/p24/index.js +1 -2
- package/src/funding/paidy/config.jsx +50 -39
- package/src/funding/paidy/index.js +1 -1
- package/src/funding/paylater/config.jsx +118 -111
- package/src/funding/paylater/index.js +1 -2
- package/src/funding/paypal/config.jsx +44 -46
- package/src/funding/paypal/index.js +1 -2
- package/src/funding/paypal/style.scoped.scss +80 -74
- package/src/funding/paypal/template.jsx +450 -354
- package/src/funding/payu/config.jsx +50 -39
- package/src/funding/payu/index.js +1 -1
- package/src/funding/satispay/config.jsx +50 -39
- package/src/funding/satispay/index.js +1 -1
- package/src/funding/sepa/config.jsx +19 -13
- package/src/funding/sepa/index.js +1 -2
- package/src/funding/sofort/config.jsx +48 -37
- package/src/funding/sofort/index.js +1 -2
- package/src/funding/trustly/config.jsx +50 -39
- package/src/funding/trustly/index.js +1 -2
- package/src/funding/venmo/config.jsx +80 -75
- package/src/funding/venmo/index.js +1 -2
- package/src/funding/venmo/style.scoped.scss +30 -32
- package/src/funding/venmo/template.jsx +56 -57
- package/src/funding/verkkopankki/config.jsx +50 -39
- package/src/funding/verkkopankki/index.js +1 -1
- package/src/funding/wechatpay/config.jsx +48 -37
- package/src/funding/wechatpay/index.js +1 -2
- package/src/funding/zimpler/config.jsx +19 -13
- package/src/funding/zimpler/index.js +1 -2
- package/src/interface/button.js +60 -44
- package/src/interface/card-fields.js +11 -8
- package/src/interface/fields.js +7 -4
- package/src/interface/marks.js +4 -4
- package/src/interface/payment-fields.js +7 -4
- package/src/interface/wallet.js +4 -4
- package/src/lib/errors.js +7 -7
- package/src/lib/index.js +5 -5
- package/src/lib/isRTLLanguage.js +3 -3
- package/src/lib/perceived-latency-instrumentation.js +54 -36
- package/src/lib/security.js +21 -17
- package/src/lib/session.js +39 -35
- package/src/marks/component.jsx +114 -65
- package/src/marks/index.js +1 -2
- package/src/marks/template.jsx +79 -65
- package/src/types.js +48 -48
- package/src/ui/buttons/button.jsx +311 -249
- package/src/ui/buttons/buttonDesigns/control.jsx +3 -5
- package/src/ui/buttons/buttonDesigns/divideLogoAnimation.jsx +127 -99
- package/src/ui/buttons/buttonDesigns/index.js +78 -75
- package/src/ui/buttons/buttonDesigns/inlineLogoTextDesign.jsx +102 -82
- package/src/ui/buttons/buttonDesigns/script.jsx +24 -18
- package/src/ui/buttons/buttonDesigns/types.js +6 -7
- package/src/ui/buttons/buttons.jsx +318 -212
- package/src/ui/buttons/config.js +62 -59
- package/src/ui/buttons/content.jsx +304 -119
- package/src/ui/buttons/index.js +1 -1
- package/src/ui/buttons/menu-button/index.js +1 -1
- package/src/ui/buttons/menu-button/menu-button.jsx +29 -22
- package/src/ui/buttons/menu-button/menu-button.scoped.scss +16 -17
- package/src/ui/buttons/poweredBy.jsx +23 -23
- package/src/ui/buttons/props.js +680 -529
- package/src/ui/buttons/script.jsx +182 -160
- package/src/ui/buttons/spinner.jsx +4 -6
- package/src/ui/buttons/style.jsx +15 -14
- package/src/ui/buttons/styles/base.js +24 -16
- package/src/ui/buttons/styles/button.js +24 -22
- package/src/ui/buttons/styles/color.js +118 -118
- package/src/ui/buttons/styles/custom.js +30 -24
- package/src/ui/buttons/styles/index.js +1 -1
- package/src/ui/buttons/styles/labels.js +17 -13
- package/src/ui/buttons/styles/page.js +3 -3
- package/src/ui/buttons/styles/responsive.js +226 -118
- package/src/ui/buttons/tagline.jsx +53 -54
- package/src/ui/chevron.jsx +27 -16
- package/src/ui/index.js +3 -3
- package/src/ui/loading.jsx +25 -18
- package/src/ui/text/index.js +1 -1
- package/src/ui/text/style.scoped.scss +25 -26
- package/src/ui/text/text.jsx +42 -20
- package/src/ui/tracking.jsx +18 -11
- package/src/zoid/buttons/component.jsx +836 -684
- package/src/zoid/buttons/container.jsx +140 -107
- package/src/zoid/buttons/index.js +1 -1
- package/src/zoid/buttons/prerender.jsx +84 -64
- package/src/zoid/buttons/util.js +355 -254
- package/src/zoid/card-fields/component.jsx +581 -549
- package/src/zoid/card-fields/index.js +1 -1
- package/src/zoid/card-fields/prerender.jsx +20 -17
- package/src/zoid/card-form/component.js +155 -141
- package/src/zoid/card-form/index.js +1 -1
- package/src/zoid/checkout/component.jsx +314 -282
- package/src/zoid/checkout/config.js +2 -2
- package/src/zoid/checkout/content.js +190 -154
- package/src/zoid/checkout/hacks.js +31 -28
- package/src/zoid/checkout/index.js +2 -2
- package/src/zoid/checkout/props.js +27 -33
- package/src/zoid/installments/component.jsx +83 -70
- package/src/zoid/installments/index.js +1 -1
- package/src/zoid/installments/props.js +1 -1
- package/src/zoid/menu/component.jsx +53 -48
- package/src/zoid/menu/index.js +1 -1
- package/src/zoid/menu/props.js +1 -3
- package/src/zoid/modal/component.jsx +119 -106
- package/src/zoid/modal/index.js +1 -1
- package/src/zoid/modal/props.js +1 -3
- package/src/zoid/payment-fields/component.jsx +215 -191
- package/src/zoid/payment-fields/container.jsx +73 -64
- package/src/zoid/payment-fields/index.js +1 -1
- package/src/zoid/payment-fields/prerender.jsx +16 -14
- package/src/zoid/payment-fields/props.js +6 -6
- package/src/zoid/qr-code/component.jsx +131 -115
- package/src/zoid/qr-code/container.jsx +74 -68
- package/src/zoid/qr-code/index.js +1 -1
- package/src/zoid/qr-code/prerender.jsx +17 -12
- package/src/zoid/qr-code/types.js +2 -2
- package/src/zoid/wallet/component.jsx +298 -260
- package/src/zoid/wallet/container.jsx +73 -64
- package/src/zoid/wallet/index.js +1 -1
- package/src/zoid/wallet/prerender.jsx +14 -14
- package/src/zoid/wallet/props.js +4 -4
- package/src/actions/save/index.js +0 -40
- package/src/interface/actions.js +0 -14
- package/src/lib/getLogoCDNExperiment.js +0 -25
|
@@ -1,66 +1,75 @@
|
|
|
1
1
|
/* @flow */
|
|
2
2
|
/** @jsx node */
|
|
3
3
|
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
import {
|
|
5
|
+
destroyElement,
|
|
6
|
+
toCSS,
|
|
7
|
+
type EventEmitterType,
|
|
8
|
+
} from "@krakenjs/belter/src";
|
|
9
|
+
import { node, type ChildType } from "@krakenjs/jsx-pragmatic/src";
|
|
10
|
+
import { EVENT } from "@krakenjs/zoid/src";
|
|
7
11
|
|
|
8
12
|
const CLASS = {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
VISIBLE: "visible",
|
|
14
|
+
INVISIBLE: "invisible",
|
|
15
|
+
COMPONENT_FRAME: "component-frame",
|
|
16
|
+
PRERENDER_FRAME: "prerender-frame",
|
|
13
17
|
};
|
|
14
18
|
|
|
15
19
|
type WalletContainerOptions = {|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
uid: string,
|
|
21
|
+
frame: ?HTMLIFrameElement,
|
|
22
|
+
prerenderFrame: ?HTMLIFrameElement,
|
|
23
|
+
event: EventEmitterType,
|
|
24
|
+
nonce?: ?string,
|
|
21
25
|
|};
|
|
22
26
|
|
|
23
|
-
export function WalletContainer({
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
27
|
+
export function WalletContainer({
|
|
28
|
+
uid,
|
|
29
|
+
frame,
|
|
30
|
+
prerenderFrame,
|
|
31
|
+
event,
|
|
32
|
+
nonce,
|
|
33
|
+
}: WalletContainerOptions): ?ChildType {
|
|
34
|
+
if (!frame || !prerenderFrame) {
|
|
35
|
+
throw new Error(`Expected frame and prerenderframe`);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
frame.classList.add(CLASS.COMPONENT_FRAME);
|
|
39
|
+
prerenderFrame.classList.add(CLASS.PRERENDER_FRAME);
|
|
40
|
+
|
|
41
|
+
frame.classList.add(CLASS.INVISIBLE);
|
|
42
|
+
prerenderFrame.classList.add(CLASS.VISIBLE);
|
|
43
|
+
|
|
44
|
+
event.on(EVENT.RENDERED, () => {
|
|
45
|
+
prerenderFrame.classList.remove(CLASS.VISIBLE);
|
|
46
|
+
prerenderFrame.classList.add(CLASS.INVISIBLE);
|
|
47
|
+
|
|
48
|
+
frame.classList.remove(CLASS.INVISIBLE);
|
|
49
|
+
frame.classList.add(CLASS.VISIBLE);
|
|
50
|
+
|
|
51
|
+
setTimeout(() => {
|
|
52
|
+
destroyElement(prerenderFrame);
|
|
53
|
+
}, 1000);
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
const setupAutoResize = (el) => {
|
|
57
|
+
event.on(EVENT.RESIZE, ({ width: newWidth, height: newHeight }) => {
|
|
58
|
+
if (typeof newWidth === "number") {
|
|
59
|
+
el.style.width = toCSS(newWidth);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
if (typeof newHeight === "number") {
|
|
63
|
+
el.style.height = toCSS(newHeight);
|
|
64
|
+
}
|
|
45
65
|
});
|
|
66
|
+
};
|
|
46
67
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
if (typeof newHeight === 'number') {
|
|
54
|
-
el.style.height = toCSS(newHeight);
|
|
55
|
-
}
|
|
56
|
-
});
|
|
57
|
-
};
|
|
58
|
-
|
|
59
|
-
const element = (
|
|
60
|
-
<div id={ uid } onRender={ setupAutoResize }>
|
|
61
|
-
<style nonce={ nonce }>
|
|
62
|
-
{`
|
|
63
|
-
#${ uid } {
|
|
68
|
+
const element = (
|
|
69
|
+
<div id={uid} onRender={setupAutoResize}>
|
|
70
|
+
<style nonce={nonce}>
|
|
71
|
+
{`
|
|
72
|
+
#${uid} {
|
|
64
73
|
position: relative;
|
|
65
74
|
display: inline-block;
|
|
66
75
|
width: 100%;
|
|
@@ -73,18 +82,18 @@ export function WalletContainer({ uid, frame, prerenderFrame, event, nonce } : W
|
|
|
73
82
|
}
|
|
74
83
|
|
|
75
84
|
@media only screen and (min-width: 0px) {
|
|
76
|
-
#${
|
|
85
|
+
#${uid} {
|
|
77
86
|
min-height: 50px;
|
|
78
87
|
}
|
|
79
88
|
}
|
|
80
89
|
|
|
81
90
|
@media only screen and (min-width: 600px) {
|
|
82
|
-
#${
|
|
91
|
+
#${uid} {
|
|
83
92
|
min-height: 60px;
|
|
84
93
|
}
|
|
85
94
|
}
|
|
86
95
|
|
|
87
|
-
#${
|
|
96
|
+
#${uid} > iframe {
|
|
88
97
|
position: absolute;
|
|
89
98
|
top: 0;
|
|
90
99
|
left: 0;
|
|
@@ -92,30 +101,30 @@ export function WalletContainer({ uid, frame, prerenderFrame, event, nonce } : W
|
|
|
92
101
|
height: 100%;
|
|
93
102
|
}
|
|
94
103
|
|
|
95
|
-
#${
|
|
104
|
+
#${uid} > iframe.${CLASS.COMPONENT_FRAME} {
|
|
96
105
|
z-index: 100;
|
|
97
106
|
}
|
|
98
107
|
|
|
99
|
-
#${
|
|
108
|
+
#${uid} > iframe.${CLASS.PRERENDER_FRAME} {
|
|
100
109
|
transition: opacity .2s linear;
|
|
101
110
|
z-index: 200;
|
|
102
111
|
}
|
|
103
112
|
|
|
104
|
-
#${
|
|
113
|
+
#${uid} > iframe.${CLASS.VISIBLE} {
|
|
105
114
|
opacity: 1;
|
|
106
115
|
}
|
|
107
116
|
|
|
108
|
-
#${
|
|
117
|
+
#${uid} > iframe.${CLASS.INVISIBLE} {
|
|
109
118
|
opacity: 0;
|
|
110
119
|
pointer-events: none;
|
|
111
120
|
}
|
|
112
121
|
`}
|
|
113
|
-
|
|
122
|
+
</style>
|
|
114
123
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
124
|
+
<node el={frame} />
|
|
125
|
+
<node el={prerenderFrame} />
|
|
126
|
+
</div>
|
|
127
|
+
);
|
|
119
128
|
|
|
120
|
-
|
|
129
|
+
return element;
|
|
121
130
|
}
|
package/src/zoid/wallet/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
/* @flow */
|
|
2
2
|
/** @jsx node */
|
|
3
3
|
|
|
4
|
-
import { node, type ChildType } from
|
|
4
|
+
import { node, type ChildType } from "@krakenjs/jsx-pragmatic/src";
|
|
5
5
|
|
|
6
6
|
type PrerenderedWalletProps = {|
|
|
7
|
-
|
|
7
|
+
nonce: ?string,
|
|
8
8
|
|};
|
|
9
9
|
|
|
10
|
-
export function WalletPrerender({ nonce }
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
export function WalletPrerender({ nonce }: PrerenderedWalletProps): ChildType {
|
|
11
|
+
return (
|
|
12
|
+
<html>
|
|
13
|
+
<body>
|
|
14
|
+
<style
|
|
15
|
+
nonce={nonce}
|
|
16
|
+
innerHTML={`
|
|
17
17
|
html, body {
|
|
18
18
|
padding: 0;
|
|
19
19
|
margin: 0;
|
|
@@ -49,9 +49,9 @@ export function WalletPrerender({ nonce } : PrerenderedWalletProps) : ChildType
|
|
|
49
49
|
transform: translateX(150%);
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
|
-
`
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
52
|
+
`}
|
|
53
|
+
/>
|
|
54
|
+
</body>
|
|
55
|
+
</html>
|
|
56
|
+
);
|
|
57
57
|
}
|
package/src/zoid/wallet/props.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* @flow */
|
|
2
2
|
|
|
3
|
-
import { FUNDING } from
|
|
3
|
+
import { FUNDING } from "@paypal/sdk-constants/src";
|
|
4
4
|
|
|
5
5
|
export type WalletProps = {|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
nonce: ?string,
|
|
7
|
+
fundingSource: $Values<typeof FUNDING>,
|
|
8
|
+
userIDToken: ?string,
|
|
9
9
|
|};
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/* @flow */
|
|
2
|
-
|
|
3
|
-
import { ZalgoPromise } from '@krakenjs/zalgo-promise/src';
|
|
4
|
-
|
|
5
|
-
import { ValidationError } from "../../lib"
|
|
6
|
-
|
|
7
|
-
type SaveActionConfig = {|
|
|
8
|
-
createVaultSetupToken: () => ZalgoPromise<string>,
|
|
9
|
-
onApprove: ({| vaultSetupToken: string |}) => void,
|
|
10
|
-
|};
|
|
11
|
-
|
|
12
|
-
export type CreateSaveAction = (config: SaveActionConfig) => {|type: 'SAVE', ... SaveActionConfig|}
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* These are the input configurations required from the merchant.
|
|
16
|
-
*/
|
|
17
|
-
const REQUIRED_INPUTS = {
|
|
18
|
-
onApprove: 'function',
|
|
19
|
-
createVaultSetupToken: 'function'
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
const validateSaveConfig = (config: SaveActionConfig): void => {
|
|
23
|
-
for (const [inputProp, inputType] of Object.entries(REQUIRED_INPUTS)) {
|
|
24
|
-
if (!config[inputProp] || typeof config[inputProp] !== inputType) {
|
|
25
|
-
throw new ValidationError(`Save action is missing the required '${inputProp}' callback`)
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* Creating a Save action allows us to validate initial inputs from the merchant, and then return the resulting object.
|
|
32
|
-
*/
|
|
33
|
-
export const createSaveAction: CreateSaveAction = (config) => {
|
|
34
|
-
validateSaveConfig(config)
|
|
35
|
-
|
|
36
|
-
return {
|
|
37
|
-
type: "SAVE",
|
|
38
|
-
...config,
|
|
39
|
-
}
|
|
40
|
-
};
|
package/src/interface/actions.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/* @flow */
|
|
2
|
-
|
|
3
|
-
import type { LazyProtectedExport } from "../types";
|
|
4
|
-
import { createSaveAction, type CreateSaveAction } from "../actions/save";
|
|
5
|
-
import {protectedExport} from '../lib'
|
|
6
|
-
|
|
7
|
-
export const actions: LazyProtectedExport<{|
|
|
8
|
-
Save: CreateSaveAction,
|
|
9
|
-
|}> = {
|
|
10
|
-
__get__: () =>
|
|
11
|
-
protectedExport({
|
|
12
|
-
Save: createSaveAction,
|
|
13
|
-
}),
|
|
14
|
-
};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/* @flow */
|
|
2
|
-
|
|
3
|
-
import { createExperiment } from "@paypal/sdk-client/src";
|
|
4
|
-
import type { Experiment } from "@krakenjs/belter/src";
|
|
5
|
-
import type { ChildType } from "@krakenjs/jsx-pragmatic/src";
|
|
6
|
-
|
|
7
|
-
export function getLogoCDNExperiment(): Experiment {
|
|
8
|
-
return createExperiment("enable_logo_cdn_experiment", 100);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export function enableLogoCDNExperiment<T>(
|
|
12
|
-
logo: (T) => ChildType,
|
|
13
|
-
logoOptions: T
|
|
14
|
-
): ChildType {
|
|
15
|
-
// enable logo CDN experiment for first render only
|
|
16
|
-
if (__WEB__) {
|
|
17
|
-
const logoCDNExperiment = getLogoCDNExperiment();
|
|
18
|
-
const loadFromCDN = logoCDNExperiment.isEnabled();
|
|
19
|
-
|
|
20
|
-
return logo({ ...logoOptions, loadFromCDN });
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
// continue using inline svg for second render
|
|
24
|
-
return logo(logoOptions);
|
|
25
|
-
}
|