Files
panel/resources/js/layouts/components/NavbarThemeSwitcher.vue

21 lines
294 B
Vue
Raw Permalink Normal View History

2025-08-04 16:33:07 +03:30
<script setup>
const themes = [
{
name: 'light',
icon: 'tabler-sun-high',
},
{
name: 'dark',
icon: 'tabler-moon-stars',
},
{
name: 'system',
icon: 'tabler-device-desktop-analytics',
},
]
</script>
<template>
<ThemeSwitcher :themes="themes" />
</template>