14 lines
184 B
Vue
14 lines
184 B
Vue
|
<script setup lang="ts">
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<span class="secondary-info"><slot /></span>
|
||
|
</template>
|
||
|
|
||
|
<style lang="postcss">
|
||
|
.secondary-info {
|
||
|
@apply text-black/50;
|
||
|
}
|
||
|
</style>
|