UNPKG

@engie-group/fluid-design-system-react

Version:

Fluid Design System React

8 lines (7 loc) 794 B
import { ChatInputActionButtonProperties } from '@engie-group/fluid-types'; import React from 'react'; import { type NJButtonProps } from '../../button/NJButton'; export type NJChatInputActionButtonProps = ChatInputActionButtonProperties & Omit<NJButtonProps, 'type' | 'variant' | 'scale' | 'size' | 'label' | 'emphasis' | 'isLoading' | 'href' | keyof ChatInputActionButtonProperties>; export declare const NJChatInputActionButton: React.ForwardRefExoticComponent<Pick<import("@engie-group/fluid-types").ButtonProperties, "icon"> & { variant?: import("@engie-group/fluid-types").ChatInputActionButtonVariant; } & Omit<NJButtonProps, "label" | "scale" | "variant" | "size" | "icon" | "type" | "emphasis" | "isLoading" | "href"> & React.RefAttributes<HTMLButtonElement & HTMLAnchorElement>>;