mirror of
https://github.com/Ku6epXBOCTuK/easy-png-tools.git
synced 2026-09-14 21:46:35 +00:00
25 lines
472 B
Svelte
25 lines
472 B
Svelte
<script lang="ts">
|
|
import MetaRow from "./MetaRow.svelte";
|
|
|
|
interface Props {
|
|
items: { caption: string; value: string }[];
|
|
}
|
|
let { items }: Props = $props();
|
|
</script>
|
|
|
|
<div class="meta-list">
|
|
{#each items as item (item.caption)}
|
|
<MetaRow caption={item.caption} value={item.value} />
|
|
{/each}
|
|
</div>
|
|
|
|
<style>
|
|
.meta-list {
|
|
border-top: 1px solid var(--line);
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 8px;
|
|
padding-top: 14px;
|
|
display: grid;
|
|
}
|
|
</style>
|