Files
ojnext/src/shared/components/ContestTitle.vue
2024-07-05 09:10:23 +08:00

20 lines
463 B
Vue

<script setup lang="ts">
import { Icon } from "@iconify/vue"
import { ContestType } from "utils/constants"
import { Contest } from "utils/types"
defineProps<{ contest: Contest }>()
</script>
<template>
<n-flex>
<Icon
v-if="contest.contest_type === ContestType.private"
:height="24"
:width="24"
icon="streamline-emojis:locked-with-key"
></Icon>
<span>{{ contest.title }}</span>
</n-flex>
</template>
<style scoped></style>