UNPKG

@xapp/chat-widget

Version:
14 lines (13 loc) 449 B
import 'rollup-plugin-inject-process-env'; import { FC } from "react"; import { ChatServerActionLink } from "../../xapp/ChatServerMessage"; import "./ChatChips.scss"; export interface Props { readonly options: readonly (string | ChatServerActionLink)[]; onOptionClick?: (option: string | ChatServerActionLink) => void; } /** * Render option list. We just follow the order. */ declare const ChatChips: FC<Props>; export default ChatChips;