8 lines
217 B
Vue
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>
|