]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/blob
d27d54a4bae22d54c3c5f4dc334180176b989d3b
[pkg/ggml/sources/llama.cpp] /
1 <script lang="ts">
2 interface Props {
3 displayName: string;
4 fileSize: string;
5 }
6
7 let { displayName, fileSize }: Props = $props();
8 </script>
9
10 <div class="sticky top-0 z-[20] mb-4 rounded-lg bg-black/5 px-4 py-2 text-center backdrop-blur-md">
11 <p class="font-medium text-white">{displayName}</p>
12
13 {#if fileSize}
14 <p class="text-xs text-white/60">{fileSize}</p>
15 {/if}
16 </div>