gateway.fjla.uk/src/lib/components/indicatorDot.svelte
2023-07-29 21:36:59 +01:00

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>