import React from 'react'; import classNames from 'classnames'; import { CustomInput as RSCustomInput } from 'reactstrap'; const CustomInput = (props) => { const { className, ...otherProps } = props; const inputClass = classNames(className, { 'custom-control-empty': !props.label }); return ( ); } CustomInput.propTypes = { ...RSCustomInput.propTypes }; export { CustomInput };