File "BaseNewBadge.vue"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/resources/scripts/components/BaseNewBadge.vue
File size: 328 bytes
MIME-type: text/html
Charset: utf-8

<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>