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 components;
16pub mod prelude;
17mod styled_ext;
18mod styles;
19pub mod utils;
20
21pub use components::*;
22pub use prelude::*;
23pub use styled_ext::*;
24pub use styles::*;