mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			328 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			328 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <span
 | 
						|
    :class="[
 | 
						|
      sucess ? 'bg-green-100 text-green-700 ' : 'bg-red-100 text-red-700',
 | 
						|
      'px-2 py-1 text-sm font-normal text-center uppercase',
 | 
						|
    ]"
 | 
						|
  >
 | 
						|
    <slot />
 | 
						|
  </span>
 | 
						|
</template>
 | 
						|
 | 
						|
<script setup>
 | 
						|
const props = defineProps({
 | 
						|
  sucess: {
 | 
						|
    type: Boolean,
 | 
						|
    default: false,
 | 
						|
  },
 | 
						|
})
 | 
						|
</script>
 |