25 lines
493 B
Vue
25 lines
493 B
Vue
<script setup lang="ts">
|
|
import {
|
|
AuthenticationColorToggle,
|
|
AuthenticationLayoutToggle,
|
|
LanguageToggle,
|
|
ThemeToggle,
|
|
} from '../widgets';
|
|
|
|
defineOptions({
|
|
name: 'AuthenticationToolbar',
|
|
});
|
|
</script>
|
|
<template>
|
|
<div
|
|
class="flex-center bg-accent absolute right-2 top-4 rounded-3xl px-3 py-1"
|
|
>
|
|
<div class="hidden md:flex">
|
|
<AuthenticationColorToggle />
|
|
<AuthenticationLayoutToggle />
|
|
</div>
|
|
<LanguageToggle />
|
|
<ThemeToggle />
|
|
</div>
|
|
</template>
|