UNPKG

@kitn.ai/ui

Version:

Framework-agnostic, Shadow-DOM web components for building AI chat interfaces — works in React, Vue, Angular, Svelte, or plain HTML. Authored in SolidJS.

11 lines (10 loc) 276 B
import { JSX } from 'solid-js'; export interface ThinkingBarProps { class?: string; text?: string; onStop?: () => void; stopLabel?: string; onClick?: () => void; } declare function ThinkingBar(props: ThinkingBarProps): JSX.Element; export { ThinkingBar };