26 lines
396 B
Vue
26 lines
396 B
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
icon?: string
|
|
iconSize?: string
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
icon: 'tabler-x',
|
|
iconSize: '20',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<IconBtn
|
|
variant="elevated"
|
|
size="30"
|
|
:ripple="false"
|
|
class="v-dialog-close-btn"
|
|
>
|
|
<VIcon
|
|
:icon="props.icon"
|
|
:size="props.iconSize"
|
|
/>
|
|
</IconBtn>
|
|
</template>
|