1use crate::*;
23/// 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))]
10pub title: &'static str,
11}