Files
hermes-chat-v2/src/lib/components/ui/sheet/sheet-header.svelte
Hermes Agent 511793772a Initial commit: Hermes Chat v2
Svelte 5 + shadcn-svelte + Tailwind CSS v4 chat interface
for Hermes Agent with Monaco editor, file drag/drop,
artifacts, image preview, and real session management.

- SSE streaming via hermes CLI proxy
- File upload + drag/drop with image preview
- Code artifacts with Monaco editor
- Markdown + highlight.js syntax highlighting
- Full settings (model, provider, temp, system prompt)
- 12 shadcn UI components
- Dark/light theme
2026-05-22 05:21:37 +02:00

19 lines
380 B
Svelte

<script lang="ts">
import { cn } from "$lib/utils.ts";
let {
class: className = "",
children,
...restProps
}: {
class?: string;
children?: import("svelte").Snippet;
[key: string]: unknown;
} = $props();
</script>
<div class={cn("flex flex-col space-y-1.5 text-center sm:text-left", className)} {...restProps}>
{#if children}
{@render children()}
{/if}
</div>