import { cn } from "@/shared/utils/utils"; import * as React from "react"; export type InputProps = React.InputHTMLAttributes; const Input = React.forwardRef( ({ className, type, ...props }, ref) => { return ( ); } ); Input.displayName = "Input"; export { Input };