import * as React from "react"
import { Input as InputPrimitive } from "@base-ui/react/input"
import { cn } from "../core/cn"
function Input({ className, type, ...props }: React.ComponentProps<"input">) {
return (
)
}
interface InputGroupProps {
children: React.ReactNode
className?: string
}
function InputGroup({ children, className }: InputGroupProps) {
return (
{children}
)
}
interface InputIconProps {
children: React.ReactNode
position: "start" | "end"
className?: string
}
function InputIcon({ children, position, className }: InputIconProps) {
return (
{children}
)
}
export { Input, InputGroup, InputIcon }