slider-rs 0.0.2

🎚️ A highly customizable slider component for WASM frameworks like Yew, Dioxus, and Leptos.
Documentation
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/opensass/slider-rs/refs/heads/main/assets/logo.webp",
    html_favicon_url = "https://github.com/opensass/slider-rs/blob/main/assets/favicon.png"
)]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]

pub mod common;

#[cfg(feature = "yew")]
pub mod yew;

#[cfg(feature = "dio")]
pub mod dioxus;

#[cfg(feature = "lep")]
pub mod leptos;

pub use common::{Color, Cursor, Height, Orientation, Size, Width};