Skip to content

Commit 319d018

Browse files
committed
refactor(footer): replace NeoIcon with Icon and update imports
1 parent a3dfd77 commit 319d018

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

components/TheFooter.vue

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
class="flex items-center"
3333
>
3434
{{ item.name }}
35-
<NeoIcon
36-
icon="arrow-up-right"
35+
<Icon
36+
name="i-mdi:arrow-top-right"
3737
class="ml-1 text-k-grey"
3838
/>
3939
</a>
@@ -66,8 +66,8 @@
6666
class="flex items-center"
6767
>
6868
{{ item.name }}
69-
<NeoIcon
70-
icon="arrow-up-right"
69+
<Icon
70+
name="i-mdi:arrow-top-right"
7171
class="ml-1 text-k-grey"
7272
/>
7373
</a>
@@ -101,8 +101,8 @@
101101
class="flex items-center"
102102
>
103103
{{ item.name }}
104-
<NeoIcon
105-
icon="arrow-up-right"
104+
<Icon
105+
name="i-mdi:arrow-top-right"
106106
class="ml-1 text-k-grey"
107107
/>
108108
</a>
@@ -112,10 +112,9 @@
112112
class="flex items-center"
113113
>
114114
{{ item.name }}
115-
<NeoIcon
115+
<Icon
116116
v-if="item.highlight"
117-
icon="sparkle"
118-
pack="fasr"
117+
name="i-mdi:star-four-points"
119118
class="text-k-primary text-xl ml-1"
120119
/>
121120
</nuxt-link>
@@ -143,8 +142,8 @@
143142
class="flex items-center"
144143
>
145144
{{ item.name }}
146-
<NeoIcon
147-
icon="arrow-up-right"
145+
<Icon
146+
name="i-mdi:arrow-top-right"
148147
class="ml-1 text-k-grey"
149148
/>
150149
</a>
@@ -163,8 +162,6 @@
163162
</template>
164163

165164
<script lang="ts" setup>
166-
import { NeoIcon } from '@kodadot1/brick'
167-
168165
interface Menu {
169166
name: string
170167
url: string

0 commit comments

Comments
 (0)