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