tethys.backend/resources/js/Components/FormControlIcon.vue

24 lines
366 B
Vue
Raw Normal View History

2023-03-03 15:54:28 +00:00
<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>