16 lines
391 B
Svelte
16 lines
391 B
Svelte
<script>
|
|
import { ModalContent, Select } from "@budibase/bbui"
|
|
import { themeStore } from "stores/portal"
|
|
import { Constants } from "@budibase/frontend-core"
|
|
</script>
|
|
|
|
<ModalContent title="Theme">
|
|
<Select
|
|
options={Constants.Themes}
|
|
bind:value={$themeStore.theme}
|
|
placeholder={null}
|
|
getOptionLabel={x => x.name}
|
|
getOptionValue={x => x.class}
|
|
/>
|
|
</ModalContent>
|