UNPKG

react-bootstrap-typeahead

Version:
5 lines (4 loc) 242 B
import cx from 'classnames'; import React, { forwardRef } from 'react'; const Input = forwardRef((props, ref) => (React.createElement("input", { ...props, className: cx('rbt-input-main', props.className), ref: ref }))); export default Input;