1use super::*; 2 3/// Props for the [`euv_markdown`] component. 4#[derive(Clone, Copy, CustomDebug, Data, Default, New)] 5pub struct EuvMarkdownProps { 6 /// The block AST to render. 7 #[get(type(copy))] 8 pub blocks: &'static [EuvMdBlock], 9}