2023-04-16 03:42:26 +02:00
|
|
|
<script lang="ts">
|
|
|
|
/**
|
|
|
|
* Simple wrapper around the HTML-color field.
|
|
|
|
*/
|
2023-06-14 20:39:36 +02:00
|
|
|
import { UIEventSource } from "../../../Logic/UIEventSource"
|
2023-04-16 03:42:26 +02:00
|
|
|
|
2023-06-14 20:39:36 +02:00
|
|
|
export let value: UIEventSource<undefined | string>
|
2023-04-16 03:42:26 +02:00
|
|
|
</script>
|
|
|
|
|
2023-06-14 20:39:36 +02:00
|
|
|
<input bind:value={$value} type="color" />
|