<template>
  <div
    class="tw-w-min tw-min-w-64 tw-px-6 tw-py-4 tw-border tw-border-gray-200 tw-border-solid tw-rounded-md"
  >
    <h3 class="tw-font-bold tw-text-base tw-pb-1">{{ title }}</h3>
    <slot />
  </div>
</template>

<script lang="ts" setup>
defineProps<{
  title: string
}>()
</script>