euv-ui 0.8.24

Reusable UI component library for the euv framework, providing buttons, cards, modals, inputs, and more.
Documentation
//! euv-ui
//!
//! Reusable UI component library for the euv framework,
//! providing buttons, cards, modals, inputs, theme management, and more.

mod component;
mod style;

pub use {component::*, style::*};

use euv::*;

use std::{
    cell::{Cell, RefCell, UnsafeCell},
    collections::HashSet,
    rc::Rc,
    sync::atomic::{AtomicBool, Ordering},
};

use {js_sys::*, lombok_macros::*, wasm_bindgen::prelude::*, wasm_bindgen_futures::*, web_sys::*};