UNPKG

@xapp/chat-widget

Version:
11 lines (10 loc) 407 B
import 'rollup-plugin-inject-process-env'; import { FC, PropsWithChildren } from "react"; import { ChatServerActionLink } from "../../xapp/ChatServerMessage"; import "./ChatChip.scss"; export interface Props { readonly option: string | ChatServerActionLink; onClick?: (option: string | ChatServerActionLink) => void; } declare const ChatChip: FC<PropsWithChildren<Props>>; export default ChatChip;