pib-components-dx-base 0.0.0-upstream-snapshot.2026-09-19.1

temporary fork for Politik im Blick - Dioxus components
Documentation
use super::super::component::*;
use dioxus::prelude::*;

#[component]
pub fn Demo() -> Element {
    rsx! {
        div {
            display: "flex",
            flex_direction: "column",
            align_items: "center",
            "One thing"
            Separator {
                style: "margin: 25px 10px; width: 50%;",
                horizontal: true,
                decorative: true,
            }
            "Another thing"
        }
    }
}