26 lines
696 B
Vue
26 lines
696 B
Vue
<template>
|
|
<div class="flex flex-col items-center justify-center mt-60">
|
|
<GraduationCap class="size-10 mx-auto stroke-1 text-ink-gray-5" />
|
|
<div class="text-lg font-semibold text-ink-gray-7 mb-2.5">
|
|
{{ __('No {0}').format(props.type) }}
|
|
</div>
|
|
<div
|
|
class="leading-5 text-base w-2/5 text-base text-center text-ink-gray-7"
|
|
>
|
|
{{
|
|
__(
|
|
'There are no {0} currently. Keep an eye out, fresh learning experiences are on the way!'
|
|
).format(props.type)
|
|
}}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue'
|
|
import { BookOpen, GraduationCap } from 'lucide-vue-next'
|
|
|
|
const props = defineProps({
|
|
type: String,
|
|
})
|
|
|
|
</script> |