import './style'; import React, { Fragment } from 'react'; import { Props } from './interface'; import cn from 'classnames'; import t from 'prop-types'; const VeraInput: React.FC = ({ children, style, className, placeholder = '', value, type = 'text', onChange, ref, ...rest }) => { const classNames = cn({ 'base-input': true, }); return ( ); }; export default VeraInput;