import { forwardRef, type InputHTMLAttributes } from "react";
import { cn } from "src/lib/utils";
type InputProps = InputHTMLAttributes;
const Input = forwardRef(
({ className, type, ...props }, ref) => {
return (
);
},
);
Input.displayName = "Input";
export default Input;