This commit is contained in:
Tobias Klemp
2025-11-23 18:55:37 +01:00
parent c829f9f57b
commit 90280fd436
53 changed files with 1620 additions and 82 deletions

View File

@@ -0,0 +1,13 @@
<script lang="ts">
import type { SpecificationAttribute } from '$lib'
import type { Snippet } from 'svelte'
import SpecRow from './SpecRow.svelte'
const { attributes }: { attributes: SpecificationAttribute[] } = $props()
</script>
<dl class="space-y-3">
{#each attributes as attribute (attribute.key)}
<SpecRow {attribute} />
{/each}
</dl>