purityselect/resources/js/layouts/components/NavbarThemeSwitcher.vue
2024-10-25 01:05:27 +05:00

17 lines
201 B
Vue

<script setup>
const themes = [
{
name: 'light',
icon: 'bx-sun',
},
{
name: 'dark',
icon: 'bx-moon',
},
]
</script>
<template>
<ThemeSwitcher :themes="themes" />
</template>