use super::*;
#[derive(Clone, Copy, CustomDebug, Data, Default, New)]
pub struct EuvPaginationItem {
#[get(type(copy))]
pub text: &'static str,
#[get(type(copy))]
pub link: &'static str,
}
#[derive(Clone, Copy, CustomDebug, Data, Default, New)]
pub struct EuvPaginationProps {
#[get(type(copy))]
pub prev_label: &'static str,
#[get(type(copy))]
pub next_label: &'static str,
#[get(type(copy))]
pub prev: Option<EuvPaginationItem>,
#[get(type(copy))]
pub next: Option<EuvPaginationItem>,
}