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.

16 lines (15 loc) 393 B
import { JSX } from 'solid-js'; export interface Skill { id: string; name: string; } export interface MessageSkillsProps { skills: Skill[]; class?: string; } /** * Displays skill badges above a message to indicate which skills * were active when the message was generated. */ declare function MessageSkills(props: MessageSkillsProps): JSX.Element; export { MessageSkills };