feat(assets): add ModelInfoPanel for asset browser right panel

Amp-Thread-ID: https://ampcode.com/threads/T-019bc42f-b9b7-71de-9d8f-6584610ab21e
Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
Alexander Brown
2026-01-15 16:27:45 -08:00
parent 23694f37bf
commit 98da79910b
5 changed files with 236 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
<template>
<div class="flex flex-col gap-1 px-4 py-2">
<span class="text-xs text-muted-foreground">{{ label }}</span>
<slot />
</div>
</template>
<script setup lang="ts">
defineProps<{
label: string
}>()
</script>