import * as React from "react"; import { cn } from "@/lib/utils"; export interface InputProps extends React.InputHTMLAttributes {} const Input = React.forwardRef( ({ className, type, ...props }, ref) => { return ( ); }, ); export interface InputWithIconProps extends React.InputHTMLAttributes { icon: React.ReactNode; } const InputWithIcon = React.forwardRef( ({ className, type, icon, ...props }, ref) => { return (
{icon}
); }, ); InputWithIcon.displayName = "Input"; export { Input, InputWithIcon };