mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
22 lines
420 B
Vue
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>
|