import React, { forwardRef } from "react"; import { InputField, UnstyledSelect } from "../../.."; import type { InputFieldProps } from "./types"; export const InputFieldWithSelect = forwardRef< HTMLInputElement, InputFieldProps & { selectProps: typeof UnstyledSelect } >(function EmailField(props, ref) { return ( } /> ); });