Crate helixui

Crate helixui 

Source
Expand description

§HelixUI

A modern UI component library for Dioxus applications.

§Features

  • 🎨 Modern and beautiful components
  • 🌙 Dark mode support
  • 📱 Responsive design
  • 🚀 Built with Dioxus
  • 🎯 Type-safe and performant

§Quick Start

use helixui::components::{Button, ButtonType};
use dioxus::prelude::*;

fn App() -> Element {
    rsx! {
        Button {
            button_type: ButtonType::Primary,
            "Hello HelixUI!"
        }
    }
}

Re-exports§

pub use components::*;

Modules§

components