mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-07 21:07:44 +00:00
25 lines
595 B
Svelte
25 lines
595 B
Svelte
<script lang="ts">
|
|
import { type Theme, currentTheme } from '$routes/+layout.svelte';
|
|
import Select, { type SelectOption } from './Select.svelte';
|
|
|
|
const options = [
|
|
{
|
|
value: 'dark',
|
|
label: 'Dark',
|
|
icon: 'web-icon-dark'
|
|
},
|
|
{
|
|
value: 'light',
|
|
label: 'Light',
|
|
icon: 'web-icon-light'
|
|
},
|
|
{
|
|
value: 'system',
|
|
label: 'System',
|
|
icon: 'web-icon-system'
|
|
}
|
|
];
|
|
</script>
|
|
|
|
<Select {options} bind:value={$currentTheme} placement="top" />
|