import { isNil } from 'ramda'; import type { InputPropsWithoutGroup } from './models'; const Custom = ({ custom, ...props }: InputPropsWithoutGroup): JSX.Element | null => { if (isNil(custom)) { return null; } return ; }; export default Custom;