felicity-lims/webapp/components/Badge.vue

23 lines
420 B
Vue
Raw Normal View History

2023-11-10 14:05:15 +08:00
<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>