Files
BarangaySystem/resources/js/Components/Core/Skeleton/SkeletonAvatar.vue
2026-06-06 18:43:00 +08:00

18 lines
308 B
Vue

<template>
<SkeletonBlock
:width="size"
:height="size"
borderRadius="50%"
:margin="margin"
/>
</template>
<script setup>
import SkeletonBlock from './SkeletonBlock.vue';
defineProps({
size: { type: String, default: '48px' },
margin: { type: String, default: '0' }
})
</script>