ui.rs

 1#![deny(missing_docs)]
 2
 3//! # UI – Zed UI Primitives & Components
 4//!
 5//! This crate provides a set of UI primitives and components that are used to build all of the elements in Zed's UI.
 6//!
 7//! ## Related Crates:
 8//!
 9//! - [`ui_macros`] - proc_macros support for this crate
10//! - [`ui_input`] - the single line input component
11//!
12
13mod components;
14pub mod prelude;
15mod styles;
16mod tests;
17mod traits;
18pub mod utils;
19
20pub use components::*;
21pub use prelude::*;
22pub use styles::*;