usesuper::*;/// Props for the [`euv_result`] component.
#[derive(Clone, Copy, CustomDebug, Data, Default, New)]pubstructEuvResultProps{/// The big status code (e.g. `"404"`, skipped when empty).
#[get(type(copy))]pubcode:&'staticstr,
/// The result title (skipped when empty).
#[get(type(copy))]pubtitle:&'staticstr,
/// The description rendered under the title (skipped when empty).
#[get(type(copy))]pubdescription:&'staticstr,
}