-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove incorrect account from url (#95)
* Remove incorrect account from url * Fix the Base icon * Fix for accounts (remove placeholder data) * Group all rewards by symbol * svgo
- Loading branch information
Showing
8 changed files
with
70 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
import { Icon, IconProps } from '@chakra-ui/react'; | ||
import { Image } from '@chakra-ui/react'; | ||
import icon from './icon.svg'; | ||
|
||
export const BaseIcon = ({ | ||
width = '24px', | ||
height = '24px', | ||
fill = '#0052FF', | ||
...props | ||
}: IconProps) => { | ||
return ( | ||
<Icon width={width} height={height} viewBox="0 0 24 24" {...props}> | ||
<circle cx="73" cy="73" r="73" fill="#0052FF" /> | ||
<g width="24" height="24" fill="white"> | ||
<path | ||
d="M11.9791 24C18.618 24 24 18.6274 24 12C24 5.37257 18.618 0 11.9791 0C5.6804 0 0.513182 4.8359 0 10.9913H15.8889V13.0087H8.6297e-08C0.513182 19.1641 5.6804 24 11.9791 24Z" | ||
fill={fill as string} | ||
/> | ||
</g> | ||
</Icon> | ||
); | ||
}; | ||
export function BaseIcon({ ...props }) { | ||
return <Image src={icon} alt="Base" {...props} />; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters