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
12mod components;
13pub mod prelude;
14mod styles;
15mod tests;
16mod traits;
17pub mod utils;
18
19pub use components::*;
20pub use prelude::*;
21pub use styles::*;