mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 14:03:18 -05: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>
 |