Files
site/resources/js/Shared/Misc/ShareCount.vue
2025-04-21 16:03:20 +02:00

21 lines
345 B
Vue

<template>
<div class="flex items-center text-gray-light">
<svg class="w-5 h-5 flex-shrink-0">
<use xlink:href="#share"></use>
</svg>
<span v-show="shares" class="ml-2 text-sm">{{
shares
}}</span>
</div>
</template>
<script>
export default {
components: {
},
props: {
shares: Number,
},
};
</script>