Skip to main content

euv_ui/component/card/view/
struct.rs

1use crate::*;
2
3/// Props for the `euv_card` component.
4///
5/// Defines the strongly-typed interface for the card wrapper.
6#[derive(Clone, Data, Debug, Default, New)]
7pub struct EuvCardProps {
8    /// The card title displayed in the header.
9    #[get(type(copy))]
10    pub title: &'static str,
11}