This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/components/misc/colorBubble.vue

26 lines
355 B
Vue

<template>
<span
:style="{backgroundColor: color }"
class="color-bubble"
></span>
</template>
<script lang="ts" setup>
defineProps({
color: {
type: String,
required: true,
},
})
</script>
<style scoped>
.color-bubble {
display: inline-block;
border-radius: 100%;
margin-right: 4px;
height: 10px;
width: 10px;
flex-shrink: 0;
}
</style>