use crate::*;
#[derive(Clone, CustomDebug, Default)]
pub struct EuvInputProps {
pub id: &'static str,
pub name: &'static str,
pub label: &'static str,
pub input_type: &'static str,
pub placeholder: &'static str,
pub value: Signal<String>,
pub autocomplete: &'static str,
#[debug(skip)]
pub oninput: Option<Rc<dyn Fn(Event)>>,
pub class: Css,
}