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
6mod clickable;
7mod components;
8mod disableable;
9mod fixed;
10mod key_bindings;
11mod path_str;
12pub mod prelude;
13mod selectable;
14mod styled_ext;
15mod styles;
16pub mod utils;
17mod visible_on_hover;
18mod with_rem_size;
19
20pub use clickable::*;
21pub use components::*;
22pub use disableable::*;
23pub use fixed::*;
24pub use key_bindings::*;
25pub use prelude::*;
26pub use styled_ext::*;
27pub use styles::*;
28pub use with_rem_size::*;