
This PR reworks the `ListHeader` component to be more open. The `meta` method can now be used to append meta items of any element to the `ListHeader`, and they will be rendered with the appropriate spacing between them. Release Notes: - N/A
11 lines
202 B
Rust
11 lines
202 B
Rust
mod list;
|
|
mod list_header;
|
|
mod list_item;
|
|
mod list_separator;
|
|
mod list_sub_header;
|
|
|
|
pub use list::*;
|
|
pub use list_header::*;
|
|
pub use list_item::*;
|
|
pub use list_separator::*;
|
|
pub use list_sub_header::*;
|