felicity-lims/webapp/components/Badge.vue
2023-04-07 17:52:19 +02:00

22 lines
420 B
Vue

<template>
<div
class="px-3 h-6 rounded-full text-xs font-semibold flex items-center"
:class="`bg-${color}-100 text-${color}-700`"
>
<span class="w-2 h-2 rounded-full mr-1" :class="`bg-${color}-400`"></span>
<span>
<slot></slot>
</span>
</div>
</template>
<script>
export default {
name: "badge",
props: {
color: {
type: String,
default: "teal"
}
}
};
</script>