2023-01-17 12:50:21 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
defineProps<{
|
|
|
|
replying?: boolean
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
2023-01-13 00:08:56 +00:00
|
|
|
<template>
|
2023-01-17 12:50:21 +00:00
|
|
|
<p flex="~ gap-1 wrap" items-center text-sm :class="{ 'zen-none': !replying }">
|
2023-01-13 00:08:56 +00:00
|
|
|
<span i-ri-arrow-right-line ml--1 text-secondary-light /><slot />
|
|
|
|
</p>
|
|
|
|
</template>
|