import { Input as InputPrimitive } from '@base-ui/react/input'; import { cn } from '@evershop/evershop/lib/util/cn'; import * as React from 'react'; const Input = React.forwardRef>( ({ className, type, ...props }, ref) => { return ( ); } ); Input.displayName = 'Input'; export { Input };