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//! ## Work in Progress
6//!
7//! This crate is still a work in progress. The initial primitives and components are built for getting all the UI on the screen,
8//! much of the state and functionality is mocked or hard codeded, and performance has not been a focus.
9//!
10
11#![doc = include_str!("../docs/hello-world.md")]
12#![doc = include_str!("../docs/building-ui.md")]
13#![doc = include_str!("../docs/todo.md")]
14
15mod clickable;
16mod components;
17mod disableable;
18mod fixed;
19pub mod prelude;
20mod selectable;
21mod styled_ext;
22mod styles;
23pub mod utils;
24
25pub use clickable::*;
26pub use components::*;
27pub use disableable::*;
28pub use fixed::*;
29pub use prelude::*;
30pub use selectable::*;
31pub use styled_ext::*;
32pub use styles::*;