import { Alert, Badge, Card } from "@wrnexus/ui" component UploadStatus { props { files: unknown[] = [] title: string = "Uploaded files" emptyMessage: string = "No files uploaded yet." color: string = "primary" size: string = "sm" class: string = "" } view { {#if files.length == 0}{/if}
{#each files as file}

{file.name}

{file.type || "File"} ยท {file.size || 0} bytes

{/each}
} }