blob: 4b36ad6c7817e40062e1315a4044ff2735ea0aee (
plain) (
tree)
|
|
<script lang="ts">
import { idFromLabel } from '$lib/Utils';
export let label: string;
const id = idFromLabel(label);
</script>
<label class="self-center" for={id}>{label}</label>
<slot {id} />
|