mirror of
https://github.com/unraid/api.git
synced 2026-01-06 00:30:22 -06:00
feat: create beta component
This commit is contained in:
18
components/UserProfile/Beta.vue
Normal file
18
components/UserProfile/Beta.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<script setup lang="ts">
|
||||
export interface Props {
|
||||
colorClasses?: string
|
||||
}
|
||||
|
||||
withDefaults(defineProps<Props>(), {
|
||||
colorClasses: 'text-grey-mid border-grey-mid',
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<span
|
||||
class="text-10px uppercase py-4px px-6px border-2 rounded-full"
|
||||
:class="colorClasses"
|
||||
>
|
||||
{{ 'Beta' }}
|
||||
</span>
|
||||
</template>
|
||||
Reference in New Issue
Block a user