wip
This commit is contained in:
13
src/lib/components/ui/specCard/SpecTable.svelte
Normal file
13
src/lib/components/ui/specCard/SpecTable.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user