Skip to content

Commit 9276537

Browse files
authored
[Bugfix] svg not show in Safari (#2657)
1 parent ffc2e0b commit 9276537

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

wormhole-connect/src/icons/TokenIcons.tsx

+12-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,18 @@ const iconMap: { [key in Icon]: React.JSX.Element } = {
8888
[Icon.NTT]: NTT(),
8989
[Icon.SCROLL]: SCROLL(),
9090
[Icon.BLAST]: BLAST(),
91-
[Icon.XLAYER]: <img src={chainToIcon('Xlayer')} />,
92-
[Icon.MANTLE]: <img src={chainToIcon('Mantle')} />,
91+
[Icon.XLAYER]: (
92+
<img
93+
style={{ maxHeight: '100%', maxWidth: '100%' }}
94+
src={chainToIcon('Xlayer')}
95+
/>
96+
),
97+
[Icon.MANTLE]: (
98+
<img
99+
style={{ maxHeight: '100%', maxWidth: '100%' }}
100+
src={chainToIcon('Mantle')}
101+
/>
102+
),
93103
};
94104

95105
function isBuiltinIcon(icon?: Icon | string): icon is Icon {

wormhole-connect/src/icons/Tokens/ARBITRUM.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ function ARBITRUM() {
44
return (
55
<svg
66
style={{ maxHeight: '100%', maxWidth: '100%' }}
7+
width="470.29"
8+
height="514.25"
79
viewBox="0 0 470.29 514.25"
810
fill="none"
911
xmlns="http://www.w3.org/2000/svg"

wormhole-connect/src/icons/Tokens/ETH.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ function ETH() {
55
<svg
66
xmlns="http://www.w3.org/2000/svg"
77
version="1.1"
8+
height="182"
9+
width="182"
810
viewBox="0 0 182 182"
911
style={{ maxHeight: '100%', maxWidth: '100%' }}
1012
>

0 commit comments

Comments
 (0)