mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
12 lines
304 B
Vue
12 lines
304 B
Vue
<template>
|
|
<div class="hover:bg-hex-F3F4F6 hover:shadow-inner h-full px-2 flex-center cursor-pointer">
|
|
<Icon icon="icon-park-outline:music-list" class="inline-block" width="18" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Icon } from '@iconify/vue';
|
|
</script>
|
|
|
|
<style scoped></style>
|