import React from "react"; interface InputWrapperProps { label: string; id: string; children: React.ReactNode; className?: string; } function InputWrapper({ label, id, children, className = "", }: InputWrapperProps) { return (
{children}
); } export default InputWrapper;