usecrate::*;/// Props for the `header` component.
////// Defines the strongly-typed interface for a standard header
/// with an emoji icon, title, and subtitle.
#[derive(Clone, Data, Debug, Default, New)]pubstructEuvHeaderProps{/// The emoji icon displayed alongside the title.
#[get(type(copy))]pubicon:&'staticstr,
/// The page title text displayed in the heading.
#[get(type(copy))]pubtitle:&'staticstr,
/// The page subtitle / description text.
#[get(type(copy))]pubsubtitle:&'staticstr,
}