Files
nocodb/packages/nc-gui/components/nc/Badge/Beta.vue
2025-07-25 11:20:11 +05:30

18 lines
339 B
Vue

<script lang="ts" setup>
import type { NcBadgeProps } from './index.vue'
const props = withDefaults(defineProps<NcBadgeProps>(), {
border: false,
color: 'brand',
size: 'xs',
})
</script>
<template>
<NcBadge v-bind="props" class="text-bodyDefaultSm">
<slot>
{{ $t('general.beta') }}
</slot>
</NcBadge>
</template>