import * as React from 'react'; import { Input } from '@/components/ui/input'; import { Label } from '@/components/ui/label'; import { cn } from '@/lib/utils'; export interface InputProps extends React.InputHTMLAttributes { } const FloatingInput = React.forwardRef( ({ className, ...props }, ref) => { return ; }, ); FloatingInput.displayName = 'FloatingInput'; const FloatingLabel = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => { return (