UNPKG

denstyles

Version:
18 lines (17 loc) 374 B
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;