File "BaseContentPlaceholdersBox.vue"

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

<template>
  <div class="base-content-placeholders-box" :class="circleClass" />
</template>

<script setup>
import { computed } from 'vue'

const props = defineProps({
  circle: {
    type: Boolean,
    default: false,
  },
  rounded: {
    type: Boolean,
    default: false,
  },
})

const circleClass = computed(() => {
  return {
    'base-content-circle': props.circle,
    'base-content-placeholders-is-rounded': props.rounded,
  }
})
</script>