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