import type * as React from "react" import { cn } from "@/lib/utils" import { Input } from "./input" interface IconInputProps extends React.ComponentProps<"input"> { icon?: React.ReactNode rightElement?: React.ReactNode inputSize?: "default" | "lg" } function IconInput({ icon, rightElement, inputSize = "default", className, ...props }: IconInputProps) { const isLg = inputSize === "lg" return (