/** * Trouve-KA — composant UI Input (champ « field » : bordure encre, ombre dure) * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai */ import { forwardRef, type InputHTMLAttributes } from "react"; import { cn } from "@/lib/utils"; export type InputProps = InputHTMLAttributes; const Input = forwardRef( ({ className, type = "text", ...props }, ref) => ( ), ); Input.displayName = "Input"; export { Input };