24 lines
366 B
Vue
24 lines
366 B
Vue
|
<script setup>
|
||
|
import BaseIcon from '@/Components/BaseIcon.vue';
|
||
|
|
||
|
defineProps({
|
||
|
icon: {
|
||
|
type: String,
|
||
|
default: null
|
||
|
},
|
||
|
h: {
|
||
|
type: String,
|
||
|
default: null
|
||
|
}
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<BaseIcon
|
||
|
:path="icon"
|
||
|
w="w-10"
|
||
|
:h="h"
|
||
|
class="absolute top-0 left-0 z-10 pointer-events-none text-gray-500 dark:text-slate-400"
|
||
|
/>
|
||
|
</template>
|