UNPKG

@plurid/plurid-ui-components-react

Version:

Plurid User Interface Components for React

18 lines (17 loc) 596 B
import React from 'react'; import { Theme } from '@plurid/plurid-themes'; import { TextlineProperties } from '../Textline'; export interface InputLineProperties { name: string; text: string; atChange: (event: React.ChangeEvent<HTMLInputElement>) => void; theme?: Theme; type?: 'text' | 'password'; error?: boolean; textline?: Partial<TextlineProperties>; style?: React.CSSProperties; className?: string; atKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void; } declare const InputLine: React.FC<InputLineProperties>; export default InputLine;