mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			450 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			450 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<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>
 |