UNPKG

@engie-group/fluid-design-system

Version:

The Fluid Design System is ENGIE’s open-source library to create, build and deliver ENGIE digital services in a more efficient way.

18 lines (17 loc) 508 B
import { Variant } from '../../variations'; export declare const CHAT_INPUT_VARIANT: readonly ["default", "ai"]; export type ChatInputVariant = Extract<Variant | 'default', (typeof CHAT_INPUT_VARIANT)[number]>; export type ChatInputProps = { /** * Whether the chat input is disabled. */ disabled?: boolean; /** * The variant of the chat input. */ variant?: ChatInputVariant; /** * Helper text to display under the input field. */ helperText?: string; };