import { ComponentProps } from "react"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { cn } from "@/lib/utils"; export function InputField({ label, className = "", labelClassName = "", inputClassName = "", ...props }: ComponentProps & { label?: string; className?: string; labelClassName?: string; inputClassName?: string; }) { return (
{label && }
) }