This commit is contained in:
2024-09-01 18:54:23 +05:00
parent 76d18365a5
commit 061f09eca1
1597 changed files with 109451 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
<template>
<span
class="inline-flex items-center whitespace-nowrap min-h-6 px-2 rounded-full uppercase text-xs font-bold"
:class="extraClasses"
>
<slot name="icon" />
<slot>
{{ label }}
</slot>
</span>
</template>
<script>
export default {
props: {
label: {
type: [Boolean, String],
required: false,
},
extraClasses: {
type: [Array, String],
required: false,
},
},
}
</script>

View File

@@ -0,0 +1,13 @@
<template>
<span
class="h-4 inline-flex items-center justify-center font-bold rounded-full px-2 text-mono text-xs ml-1 bg-primary-100 text-primary-800 dark:bg-primary-500 dark:text-gray-800"
>
<slot />
</span>
</template>
<script>
export default {
//
}
</script>