use yew::{function_component, html, AttrValue, Children, Classes, Html, Properties};
use crate::styles::item_align::ItemAlign;
#[derive(Debug, Clone, PartialEq, Properties)]
pub struct Props {
#[prop_or_default]
pub align_items: ItemAlign,
#[prop_or_default]
pub children: Children,
#[prop_or_default]
pub classes: Classes,
#[prop_or_default]
pub component: AttrValue,
#[prop_or(false)]
pub dense: bool,
#[prop_or(false)]
pub disable_gutters: bool,
#[prop_or(false)]
pub disable_padding: bool,
#[prop_or(false)]
pub divider: bool,
#[prop_or_default]
pub secondary_action: Option<Html>,
#[prop_or_default]
pub style: AttrValue,
}
#[function_component(ListItem)]
pub fn list_item(_props: &Props) -> Html {
html! {
<>
</>
}
}