Added Serbian Dinar (RSD) currency. (#392)

This commit is contained in:
Luka Bajovic 2023-03-16 19:14:16 +01:00 committed by GitHub
parent f5853c6e7b
commit 44beac4742
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -86,6 +86,7 @@ const FlagWithProps = ({ code, width = '1.428em', height = '1.428em' }: Props):
if (code === 'ETB') flag = <Flags.ET {...defaultProps} />;
if (code === 'GEL') flag = <Flags.GE {...defaultProps} />;
if (code === 'UGX') flag = <Flags.UG {...defaultProps} />;
if (code === 'RSD') flag = <Flags.RS {...defaultProps} />;
if (code === 'ANY') flag = <EarthIcon {...defaultProps} />;
if (code === 'XAU') flag = <GoldIcon {...defaultProps} />;
if (code === 'BTC') flag = <SwapCallsIcon color='primary' />;

View File

@ -71,6 +71,7 @@
"70": "ETB",
"71": "GEL",
"72": "UGX",
"73": "RSD",
"300": "XAU",
"1000": "BTC"
}