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