move flag
This commit is contained in:
parent
fa35bdb992
commit
4c892816ba
12
Flag.tsx
12
Flag.tsx
|
|
@ -1,12 +0,0 @@
|
|||
import { Country } from "@services/accounting-api";
|
||||
import { lazy, Suspense } from 'react';
|
||||
|
||||
export default function Flag({ country, ...props }: { country: Country | "EU" }) {
|
||||
const FlagIcon = lazy(() => import(`country-flag-icons/react/3x2`).then(module => ({ default: module[country] })));
|
||||
|
||||
return (
|
||||
<Suspense fallback={<div {...props}>...</div>}>
|
||||
<FlagIcon {...props}/>
|
||||
</Suspense>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user