import { clsx } from 'clsx'; import React from 'react'; import { FORM_CONTROL_BASE_CLASSES } from '@/components/ui/formClasses.ts'; const Input = React.forwardRef>( ({ className, ...props }, ref) => { return ( ); } ); Input.displayName = 'Input'; export default Input;