2021-04-15 15:59:52 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
2021-10-26 00:43:02 +02:00
|
|
|
<script lang="ts">
|
2021-05-18 16:32:29 +02:00
|
|
|
export let value: string | undefined = undefined;
|
2021-03-31 15:40:11 +02:00
|
|
|
export let selected = false;
|
|
|
|
</script>
|
|
|
|
|
2021-10-31 00:29:22 +02:00
|
|
|
<option class="select-option" {value} {selected}>
|
2021-05-18 16:32:29 +02:00
|
|
|
<slot />
|
|
|
|
</option>
|
2021-10-31 00:29:22 +02:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.select-option {
|
|
|
|
background-color: var(--frame-bg);
|
|
|
|
}
|
|
|
|
</style>
|