<template>
  <button class="Button" @click="emit('click')">
    <slot />
  </button>
</template>

<script setup lang="ts">
const emit = defineEmits(['click'])
</script>