library/frontend/components/SecondaryInfo.vue

14 lines
184 B
Vue
Raw Normal View History

2023-07-13 16:35:42 -07:00
<script setup lang="ts">
</script>
<template>
<span class="secondary-info"><slot /></span>
</template>
<style lang="postcss">
.secondary-info {
@apply text-black/50;
}
</style>