master
 1---
 2interface Props {
 3  label: string;
 4  active?: boolean;
 5}
 6
 7const { label, active } = Astro.props;
 8---
 9
10<input
11  type="radio"
12  class="tab"
13  name="{{{tabs-name}}}"
14  aria-label={label}
15  {...active ? { checked: 'checked' } : {}}
16/>
17<div class="tab-content p-4">
18  <slot />
19</div>