mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
30 lines
410 B
Vue
30 lines
410 B
Vue
<template>
|
|
<span
|
|
class="
|
|
px-2
|
|
py-1
|
|
text-sm
|
|
font-normal
|
|
text-center text-green-800
|
|
uppercase
|
|
bg-success
|
|
"
|
|
:style="{ backgroundColor: bgColor, color }"
|
|
>
|
|
<slot />
|
|
</span>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
bgColor: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
color: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
})
|
|
</script>
|