29 lines
424 B
Vue
29 lines
424 B
Vue
|
|
<script setup>
|
||
|
|
const props = defineProps({
|
||
|
|
icon: {
|
||
|
|
type: String,
|
||
|
|
required: false,
|
||
|
|
default: 'tabler-x',
|
||
|
|
},
|
||
|
|
iconSize: {
|
||
|
|
type: String,
|
||
|
|
required: false,
|
||
|
|
default: '20',
|
||
|
|
},
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<IconBtn
|
||
|
|
variant="elevated"
|
||
|
|
size="30"
|
||
|
|
:ripple="false"
|
||
|
|
class="v-dialog-close-btn"
|
||
|
|
>
|
||
|
|
<VIcon
|
||
|
|
:icon="props.icon"
|
||
|
|
:size="props.iconSize"
|
||
|
|
/>
|
||
|
|
</IconBtn>
|
||
|
|
</template>
|