26 lines
340 B
Vue
26 lines
340 B
Vue
<template>
|
|
<div class="badge">
|
|
<slot/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
interface ComponentProps {
|
|
}
|
|
|
|
defineProps<ComponentProps>()
|
|
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.badge {
|
|
padding: 8px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #27272a;
|
|
border-radius: 8px;
|
|
}
|
|
</style>
|