import { cn } from "@ui/lib"; import React from "react"; export type InputProps = React.InputHTMLAttributes; const Input = ({ className, type, ...props }: InputProps) => { return ( ); }; export { Input };