
This PR mainlines the current state of new GPUI2-based UI from the `gpui2-ui` branch. Release Notes: - N/A --------- Co-authored-by: Nate Butler <iamnbutler@gmail.com> Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com> Co-authored-by: Marshall Bowers <1486634+maxdeviant@users.noreply.github.com> Co-authored-by: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Co-authored-by: Nate <nate@zed.dev> Co-authored-by: Mikayla <mikayla@zed.dev>
19 lines
284 B
Rust
19 lines
284 B
Rust
mod avatar;
|
|
mod button;
|
|
mod details;
|
|
mod icon;
|
|
mod input;
|
|
mod label;
|
|
mod player;
|
|
mod stack;
|
|
mod tool_divider;
|
|
|
|
pub use avatar::*;
|
|
pub use button::*;
|
|
pub use details::*;
|
|
pub use icon::*;
|
|
pub use input::*;
|
|
pub use label::*;
|
|
pub use player::*;
|
|
pub use stack::*;
|
|
pub use tool_divider::*;
|