use super::*;
#[derive(Clone, CustomDebug, Default)]
pub struct EuvDocLayoutProps {
pub toc_title: &'static str,
pub toc_items: &'static [EuvTocItem],
pub prev_label: &'static str,
pub next_label: &'static str,
pub prev: Option<EuvPaginationItem>,
pub next: Option<EuvPaginationItem>,
pub footer: &'static str,
}