File size: 208 Bytes
aa983ad
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
<template>
  <button class="inline-flex items-center p-2" @click="props.click">
    <slot></slot>
  </button>
</template>

<script setup lang="ts">
const props = defineProps<{
  click: Function
}>()
</script>