orbit/kit/mod.rs
1// OrbitKit Component Library (now part of orbit)
2
3pub mod components;
4pub mod theme;
5pub mod utils;
6
7/// Version of the OrbitKit library (deprecated, use orbit version)
8pub const VERSION: &str = env!("CARGO_PKG_VERSION"); // This will now refer to orbit's version
9
10/// Re-export of common components for convenience
11pub mod prelude {
12 pub use crate::kit::components::button::Button;
13 pub use crate::kit::components::card::Card;
14 pub use crate::kit::components::input::Input;
15 pub use crate::kit::components::layout::Layout;
16 pub use crate::kit::theme::{Theme, ThemeProvider};
17}