Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ const useStyles = makeStyles()((theme) => ({
bottom: 0,
height: 16,
width: 16,
border: `1px solid ${theme.palette.background.default}`,
borderRadius: '50%',
},
tip: {
padding: theme.spacing(1),
Expand Down
24 changes: 15 additions & 9 deletions packages/icons/general/Selected.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@ import { createIcon } from '../utils'

export const SelectedIcon = createIcon(
'SelectedIcon',
<g fill="none">
<path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Z" fill="#fff" />
<path d="M8 14.667A6.667 6.667 0 1 0 8 1.333a6.667 6.667 0 0 0 0 13.334Z" fill="#60DFAB" />
<path
fillRule="evenodd"
clipRule="evenodd"
d="M11.115 5.507c.272.247.293.67.045.941l-3.333 3.667a.667.667 0 0 1-.928.058l-2.333-2a.667.667 0 1 1 .868-1.012l1.842 1.578 2.897-3.187a.667.667 0 0 1 .942-.045Z"
fill="#fff"
/>
<g>
<g clipPath="url(#a)">
<path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Z" fill="#60DFAB" />
<path
fillRule="evenodd"
clipRule="evenodd"
d="M11.738 5.008a.8.8 0 0 1 .054 1.13l-4 4.4a.8.8 0 0 1-1.113.07l-2.8-2.4a.8.8 0 1 1 1.042-1.215l2.21 1.894 3.477-3.825a.8.8 0 0 1 1.13-.054Z"
fill="#fff"
/>
</g>
<defs>
<clipPath id="a">
<rect width="16" height="16" rx="8" fill="#fff" />
</clipPath>
</defs>
</g>,
'0 0 16 16',
)
Binary file modified packages/mask/src/plugins/EVM/assets/arbitrum.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/mask/src/plugins/EVM/assets/celo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const useStyles = makeStyles()((theme) => ({
height: 14,
background: '#fff',
borderRadius: '50%',
border: `1px solid ${theme.palette.background.default}`,
},
alert: {
fontSize: 12,
Expand Down
5 changes: 4 additions & 1 deletion packages/shared/src/UI/components/WalletIcon/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ const useStyles = makeStyles<StyleProps>()((theme, props) => ({
bottom: -2,
},
networkIcon: {},
providerIcon: {},
providerIcon: {
border: `1px solid ${theme.palette.background.default}`,
borderRadius: '50%',
},
}))

interface WalletIconProps extends withClasses<'networkIcon' | 'providerIcon'> {
Expand Down