---
interface Props {
  className?: string;
}

const { className } = Astro.props;
---

<div class={className}>
  <slot />
</div>
