UNPKG

fui-fancyui

Version:
20 lines (19 loc) 671 B
import { TLayer } from '../../../types/TLayer'; import { TTextAlignLC } from '../../../types/TTextAlignLC'; import { TUiColorsMain } from '../../../types/TUiColorsMain'; import { TUiColorsSystemMessage } from '../../../types/TUiColorsSystemMessage'; export type TLabeledInput = { id?: string; label?: string; hasPlaceholder?: boolean; inputElement?: React.ReactNode; systemMessageType?: TUiColorsSystemMessage; hasValue?: boolean; themeType?: Exclude<TUiColorsMain, 'accent'>; layer?: TLayer; isTextArea?: boolean; underline?: boolean; isActive?: boolean; align?: TTextAlignLC; labelVariant?: 'static' | 'animated'; };