gejdr-frontend/components/ui/ThemeSwitcher.vue
Lucien Cartier-Tilet 620f5b34f0
initial commit
Base appearance of the website is done, now onto adding features
2025-02-16 18:21:37 +01:00

8 lines
217 B
Vue

<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>