euv-ui 0.17.0

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
use super::*;

/// Props for the [`euv_markdown`] component.
#[derive(Clone, Copy, CustomDebug, Data, Default, New)]
pub struct EuvMarkdownProps {
    /// The block AST to render.
    #[get(type(copy))]
    pub blocks: &'static [EuvMdBlock],
}