import { ComponentProps } from "react"; import { TextInputBase } from "./TextInputBase"; type TextInputProps = Omit< ComponentProps, | "rightElement" | "status" | "bottomMessageColor" | "isPassword" | "errorMessage" >; export const TextInput = (props: TextInputProps) => ( );