first commit
This commit is contained in:
20
resources/js/layouts/components/NavbarThemeSwitcher.vue
Normal file
20
resources/js/layouts/components/NavbarThemeSwitcher.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<script setup>
|
||||
const themes = [
|
||||
{
|
||||
name: 'system',
|
||||
icon: 'ri-macbook-line',
|
||||
},
|
||||
{
|
||||
name: 'light',
|
||||
icon: 'ri-sun-line',
|
||||
},
|
||||
{
|
||||
name: 'dark',
|
||||
icon: 'ri-moon-clear-line',
|
||||
},
|
||||
]
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ThemeSwitcher :themes="themes" />
|
||||
</template>
|
Reference in New Issue
Block a user