-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTwBadge.vue
56 lines (55 loc) · 976 Bytes
/
TwBadge.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<script setup lang="ts">
defineProps({
backgroundColor: {
type: String,
required: false,
default: 'blue-100',
},
darkBackgroundColor: {
type: String,
required: false,
default: 'blue-800',
},
textColor: {
type: String,
required: false,
default: 'blue-800',
},
darkTextColor: {
type: String,
required: false,
default: 'blue-100',
},
fontSize: {
type: String,
required: false,
default: 'base',
},
fontWeight: {
type: String,
required: false,
default: 'normal',
},
rounded: {
type: Boolean,
required: false,
default: true,
},
})
</script>
<template>
<span
class="px-2.5 py-0.5"
:class="[
`bg-${backgroundColor}`,
`dark:bg-${darkBackgroundColor}`,
`text-${textColor}`,
`dark:text-${darkTextColor}`,
`text-${fontSize}`,
`font-${fontWeight}`,
rounded ? 'rounded-sm' : '',
]"
>
<slot />
</span>
</template>