euv-ui 0.8.25

Reusable UI component library for the euv framework, providing buttons, cards, modals, inputs, and more.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::*;

/// Props for the `euv_info` component.
///
/// Defines the strongly-typed interface for a key-value information row.
#[derive(Clone, Data, Debug, Default, New)]
pub struct EuvInfoProps {
    /// The label text displayed on the left side.
    #[get(type(copy))]
    pub label: &'static str,
}