euv_ui/component/info/view/struct.rs
1use crate::*;
2
3/// Props for the `euv_info` component.
4///
5/// Defines the strongly-typed interface for a key-value information row.
6#[derive(Clone, Data, Debug, Default, New)]
7pub struct EuvInfoProps {
8 /// The label text displayed on the left side.
9 #[get(type(copy))]
10 pub label: &'static str,
11}