denstyles
Version:
js styles library
18 lines (17 loc) • 374 B
TypeScript
import React from 'react';
import { InputType } from './types';
/**
*Component for test input
*
* @param {*} {
* placeholder = 'Enter the value',
* label,
* vertical = false,
* onChange = () => null,
* onSubmit = () => null,
* addClass = {},
* }
* @return {*} {JSX.Element}
*/
declare const TextInput: React.FC<InputType>;
export default TextInput;