@plurid/plurid-ui-components-react
Version:
Plurid User Interface Components for React
14 lines (13 loc) • 445 B
TypeScript
import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface InputBoxProperties {
name: string;
text: string;
atChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
theme?: Theme;
style?: React.CSSProperties;
className?: string;
atKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
}
declare const InputBox: React.FC<InputBoxProperties>;
export default InputBox;