import { TextInput, type TextInputProps } from "@mantine/core"; import React from "react"; import { cn } from "./utils"; // Assuming cn is still useful for merging classNames interface InputProps extends TextInputProps { // Add any specific props you had in your custom Input component } const Input = React.forwardRef( ({ className, type, ...props }, ref) => { return ( ); }, ); Input.displayName = "Input"; export { Input };