singlestage 0.4.1

A UI component library for Leptos based on Basecoat UI and shadcn/ui
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::module_inception)]
use std::include_str;
mod components;
pub mod reactive;
pub use components::*;
pub use reactive::*;

#[cfg(feature = "macro")]
extern crate singlestage_macro;
#[cfg(feature = "macro")]
pub use singlestage_macro::*;

#[cfg(feature = "theme_provider")]
static CSS: &str = include_str!(concat!(env!("OUT_DIR"), "/singlestage.css"));