UNPKG

@xapp/chat-widget

Version:
19 lines (18 loc) 632 B
import 'rollup-plugin-inject-process-env'; import { FC } from "react"; import { ActionBarIconType } from "@xapp/stentor-chat-widget"; export interface ActionBarIconProps { /** * The button type, used as fallback for icon selection */ readonly type: ActionBarIconType; /** * Override the icon independently of button type. * Takes precedence over type-based icon, but iconUrl takes precedence over this. */ readonly icon?: ActionBarIconType; readonly iconUrl?: string; readonly className?: string; } declare const ActionBarIcon: FC<ActionBarIconProps>; export default ActionBarIcon;