gejdr-frontend/components/ui/ThemeSwitcher.vue

8 lines
217 B
Vue
Raw Normal View History

<template>
<UButton variant="ghost" :icon="switcher.icon" @click="next" :ui="{ rounded: 'rounded-full' }" class="h-8 w-auto" />
</template>
<script setup lang="ts">
const { switcher, next } = useTheme();
</script>