@sberdevices/assistant-client
Version:
Модуль взаимодействия с виртуальным ассистентом
12 lines • 698 B
TypeScript
import React from 'react';
export declare const TextInputStyles: string;
export declare const TextInputPureStyles = "\n font-size: 22px;\n outline: none;\n background: transparent;\n";
export declare const TextInputFilledStyles = "\n height: 38px;\n font-size: 16px;\n background: rgb(144, 144, 144, 0.15);\n border-radius: 500px;\n padding: 8px 16px;\n box-sizing: border-box;\n";
export declare const TextInput: React.FC<{
value: string;
tabIndex: number;
disabled: boolean;
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
onKeyDown: (event: React.KeyboardEvent<HTMLInputElement>) => void;
}>;
//# sourceMappingURL=TextInput.d.ts.map