summaryrefslogtreecommitdiffstats
path: root/apps/web-shared/src/components/locale-switcher-icon.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web-shared/src/components/locale-switcher-icon.svelte')
-rw-r--r--apps/web-shared/src/components/locale-switcher-icon.svelte16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/web-shared/src/components/locale-switcher-icon.svelte b/apps/web-shared/src/components/locale-switcher-icon.svelte
new file mode 100644
index 0000000..d2776a1
--- /dev/null
+++ b/apps/web-shared/src/components/locale-switcher-icon.svelte
@@ -0,0 +1,16 @@
+<script>
+ import {GlobeIcon} from "svelte-feather-icons";
+
+ export let show = false;
+ export let selection = "preffered";
+</script>
+<div data-locale-switcher-element
+ class="ld-switch flex">
+ <button class="reset ld-switch-btn"
+ on:click={() => (show = !show)}>
+ <div class="ld-switch-btn__icon-wrapper ld-switch-btn__icon-wrapper--in"
+ aria-hidden="true">
+ <GlobeIcon/>
+ </div>
+ </button>
+</div>