24 lines
No EOL
343 B
Vue
24 lines
No EOL
343 B
Vue
<template>
|
|
<span
|
|
:style="{backgroundColor: color }"
|
|
class="color-bubble"
|
|
></span>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import type { Color } from 'csstype'
|
|
|
|
defineProps< {
|
|
color: Color,
|
|
}>()
|
|
</script>
|
|
|
|
<style scoped>
|
|
.color-bubble {
|
|
display: inline-block;
|
|
border-radius: 100%;
|
|
height: 10px;
|
|
width: 10px;
|
|
flex-shrink: 0;
|
|
}
|
|
</style> |