© 2026 Hedgehog Software, LLC
const Input = React.forwardRef<HTMLInputElement, React.ComponentPropsWithoutRef<"input">>((props, ref) => { return <input ref={ref} type="text" />; });
const LabelInput = React.forwardRef<HTMLInputElement, LabelInputProps>(({ text, ...props }, ref) => { return ( <div> <label>{text}</label> <Input ref={ref} {...props} /> </div> ); } );
HTMLInputElement
Input