Skip to repository content21 lines · 502 B · rust
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T03:33:52.343Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
ui.rs
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::*;
21