/// Props for the `form_input` component.
////// Defines the strongly-typed interface for the labeled input field.
#[derive(Default)]pub(crate)structFormInputProps{/// The unique identifier for the input element.
pub(crate)id:&'staticstr,
/// The label text displayed above the input.
pub(crate)label:&'staticstr,
/// The placeholder text shown when the input is empty.
pub(crate)placeholder:&'staticstr,
/// The current input value.
pub(crate)value:&'staticstr,
/// The autocomplete hint for the browser.
pub(crate)autocomplete:&'staticstr,
}