Files
OdiUp-CRM/resources/ts/layouts/components/NavbarThemeSwitcher.vue

23 lines
384 B
Vue

<script setup lang="ts">
import type { ThemeSwitcherTheme } from '@layouts/types'
const themes: ThemeSwitcherTheme[] = [
{
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>