---
const { title, checked } = Astro.props as { title: string; checked: boolean };
---

<label>
  {title}
  <input type="checkbox" checked={checked} />
</label>
