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