19 lines
420 B
Svelte
19 lines
420 B
Svelte
<script lang="ts">
|
|
export let status: string
|
|
// Bind a variable containing a service status message ( OK, Unavailable, Unknown )
|
|
console.log(status)
|
|
// Create a map which maps the status to a color
|
|
</script>
|
|
|
|
<span class="dot"></span>
|
|
|
|
<style>
|
|
.dot {
|
|
display: inline-block;
|
|
height: 10px;
|
|
width: 10px;
|
|
border-radius: 50%;
|
|
background-color: grey;
|
|
}
|
|
</style>
|