import * as React from "react" import { cn } from "@/examples/base/lib/utils" import { Input as InputPrimitive } from "@base-ui/react/input" function Input({ className, type, ...props }: React.ComponentProps<"input">) { return ( ) } export { Input }