This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / lib / components / repo / Readme.svelte
677 B 22 lines
1<script lang="ts"> 2 import FileText from "$icon/file-text"; 3 4 interface Props { 5 filename: string; 6 contents: string; 7 } 8 9 let { filename, contents }: Props = $props(); 10</script> 11 12<div class="mt-4 w-full overflow-hidden rounded bg-background-default shadow-sm"> 13 <div class="border-b border-border-default px-4 py-2"> 14 <span class="flex items-center gap-2"> 15 <FileText class="size-4 text-foreground-subtle" aria-hidden="true" /> 16 <span class="font-mono text-sm text-foreground-muted">{filename}</span> 17 </span> 18 </div> 19 <div class="overflow-x-auto px-6 py-4"> 20 <pre class="font-mono text-sm whitespace-pre-wrap text-foreground-default">{contents}</pre> 21 </div> 22</div>