This PR restructures the `ui` crate into just `elements` and `components`. This was already done on the `gpui2-ui` branch, just getting it onto `main`. Release Notes: - N/A --------- Co-authored-by: Nate Butler <nate@zed.dev>
18 lines
271 B
Rust
18 lines
271 B
Rust
mod avatar;
|
|
mod details;
|
|
mod icon;
|
|
mod indicator;
|
|
mod input;
|
|
mod label;
|
|
mod text_button;
|
|
mod tool_divider;
|
|
|
|
pub use avatar::*;
|
|
pub use details::*;
|
|
pub use icon::*;
|
|
pub use indicator::*;
|
|
pub use input::*;
|
|
pub use label::*;
|
|
pub use text_button::*;
|
|
pub use tool_divider::*;
|