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// TODO: Fix warnings instead of supressing.
15#![allow(dead_code, unused_variables)]
16
17mod components;
18pub mod prelude;
19mod styled_ext;
20mod styles;
21pub mod utils;
22
23pub use components::*;
24pub use prelude::*;
25pub use styled_ext::*;
26pub use styles::*;