mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 02:57:07 +00:00
18 lines
339 B
Vue
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>
|