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