@@ -62,10 +62,9 @@ const openState = reactive<Record<string, boolean>>({})
62
62
:class =" { 'animate-spin opacity-50 pointer-events-none': status === 'pending' || status === 'idle' }"
63
63
type =" submit"
64
64
>
65
- <Icon
65
+ <span
66
66
size =" medium"
67
- class =" text-gray-400 flex-shrink-0"
68
- name =" tabler-refresh"
67
+ class =" text-gray-400 flex-shrink-0 i-tabler-refresh inline-block w-4 h-4"
69
68
/>
70
69
<span class =" sr-only" >refresh data</span >
71
70
</button >
@@ -85,10 +84,8 @@ const openState = reactive<Record<string, boolean>>({})
85
84
{{ repo }}
86
85
</option >
87
86
</select >
88
- <Icon
89
- size =" large"
90
- class =" absolute ml-2 text-gray-400 flex-shrink-0"
91
- name =" tabler-search"
87
+ <span
88
+ class =" absolute ml-2 text-gray-400 flex-shrink-0 i-tabler-search inline-block w-6 h-6"
92
89
/>
93
90
</label >
94
91
</form >
@@ -107,11 +104,8 @@ const openState = reactive<Record<string, boolean>>({})
107
104
<div
108
105
class =" flex flex-row gap-2 leading-tightest no-underline color-current"
109
106
>
110
- <Icon
111
- size =" large"
112
- class =" flex-shrink-0"
113
- :class =" 'text-gray-500'"
114
- :name =" 'tabler-circle-dot'"
107
+ <span
108
+ class =" flex-shrink-0 text-gray-500 i-tabler-circle-dot inline-block w-6 h-6"
115
109
/>
116
110
<div class =" rounded-full h-4 bg-gray-500 w-70" />
117
111
</div >
@@ -126,10 +120,8 @@ const openState = reactive<Record<string, boolean>>({})
126
120
<span class =" text-gray-500 inline-block mr-1 font-normal" >#</span >
127
121
</h2 >
128
122
<p class =" flex flex-row gap-2 leading-tightest" >
129
- <Icon
130
- size =" large"
131
- class =" flex-shrink-0 text-gray-400"
132
- name =" tabler-alert-triangle"
123
+ <span
124
+ class =" flex-shrink-0 text-gray-400 i-tabler-alert-triangle inline-block w-6 h-6"
133
125
/>
134
126
no clusters could be identified
135
127
</p >
@@ -150,11 +142,9 @@ const openState = reactive<Record<string, boolean>>({})
150
142
:key =" i"
151
143
class =" flex flex-row gap-2 leading-tightest"
152
144
>
153
- <Icon
154
- size =" large"
155
- class =" flex-shrink-0"
156
- :class =" stateColors[issue.state] || 'text-gray-400'"
157
- :name =" issue.pull_request ? 'tabler-git-pull-request' : issue.state === 'closed' ? 'tabler-circle-check' : 'tabler-circle-dot'"
145
+ <span
146
+ class =" flex-shrink-0 inline-block w-6 h-6"
147
+ :class =" [stateColors[issue.state] || 'text-gray-400', issue.pull_request ? 'i-tabler-git-pull-request' : issue.state === 'closed' ? 'i-tabler-circle-check' : 'i-tabler-circle-dot']"
158
148
/>
159
149
<div class =" flex flex-row gap-2 flex-wrap md:flex-nowrap md:pb-6 flex-grow" >
160
150
<NuxtLink
0 commit comments