UNPKG

@xapp/chat-widget

Version:
12 lines (11 loc) 352 B
import 'rollup-plugin-inject-process-env'; import { FC } from "react"; import "./ChatMenuItem.scss"; export interface ChatMenuItemProps { onClick?: (label: string) => void; readonly label: string; readonly subtitle?: string; readonly tabIndex?: string; } declare const ChatMenuItem: FC<ChatMenuItemProps>; export default ChatMenuItem;