18 lines
308 B
Vue
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>
|