helixui 0.1.0

A modern UI component library for Dioxus applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use dioxus::prelude::*;

#[component]
pub fn Copyright() -> Element {
    rsx! {
        div {
            id: "copyright",
            class: "flex justify-center items-center",
            "Copyright@2025 HelixUI"
        }
    }
}