<script>
let country = "Us";
</script>
<button on:click={() => (country = "Uk")}>Click</button>
{#await import(`/node_modules/svelte-flag-icons/dist/${country}.svelte`) then Icon} // works only for first render
{#await import(`svelte-flag-icons/${country}.svelte`) then Icon} // does not work
<Icon.default />
{/await}
How can I do this?
Repo: https://github.com/Dibbyo456/dynamic-import-help-wanted