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