import { cn } from "@reactive-resume/utils"; import { forwardRef } from "react"; export interface InputProps extends React.InputHTMLAttributes { hasError?: boolean; } export const Input = forwardRef( ({ className, type, hasError = false, ...props }, ref) => ( ), ); Input.displayName = "Input";