File "BaseBadge.vue"

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

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