UNPKG

@xapp/chat-widget

Version:
13 lines (12 loc) 393 B
import 'rollup-plugin-inject-process-env'; import { FC } from "react"; import "./ActionButton.scss"; export interface ActionButtonProps { onClick?: (label: string) => void; readonly type?: "button" | "submit"; readonly label: string; readonly addClass?: string; readonly disable?: boolean; } declare const ActionButton: FC<ActionButtonProps>; export default ActionButton;