use yew::{function_component, html, AttrValue, Callback, Classes, Html, MouseEvent, Properties};
#[derive(Debug, Clone, PartialEq, Properties)]
pub struct Props {
pub count: i32,
pub on_page_change: Callback<(MouseEvent, i32)>,
pub page: i32,
pub rows_per_page: i32,
#[prop_or_default]
pub classes: Classes,
#[prop_or_default]
pub component: AttrValue,
#[prop_or_default]
pub label_rows_per_page: Option<Html>,
#[prop_or(false)]
pub show_first_button: bool,
#[prop_or(false)]
pub show_last_button: bool,
#[prop_or_default]
pub style: AttrValue,
}
#[function_component(TablePagination)]
pub fn table_pagination(_props: &Props) -> Html {
html! {
<>
</>
}
}