usecrate::*;/// Props for the `euv_modal` component.
////// Defines the strongly-typed interface for the modal dialog.
#[derive(Clone, CustomDebug, Data, Default, New)]pubstructEuvModalProps{/// The modal title text.
#[get(type(copy))]pubtitle:&'staticstr,
/// Optional close handler triggered by overlay or close button click.
#[debug(skip)]pubonclick:Option<Rc<dyn Fn(Event)>>,
}