zed/crates/ui2/src/components.rs

50 lines
807 B
Rust
Raw Normal View History

mod avatar;
mod button;
2023-10-09 15:25:33 +00:00
mod context_menu;
mod details;
mod facepile;
mod icon;
2023-10-06 21:16:00 +00:00
mod icon_button;
mod indicator;
mod input;
2023-10-09 15:09:44 +00:00
mod keybinding;
mod label;
2023-10-04 22:25:43 +00:00
mod list;
mod modal;
2023-10-20 00:04:21 +00:00
mod notification_toast;
2023-10-09 15:15:50 +00:00
mod palette;
2023-10-03 00:16:55 +00:00
mod panel;
mod player;
mod player_stack;
mod slot;
mod stack;
2023-10-06 22:43:25 +00:00
mod tab;
2023-10-09 15:31:56 +00:00
mod toast;
mod toggle;
mod tool_divider;
2023-10-03 00:16:55 +00:00
pub use avatar::*;
pub use button::*;
2023-10-09 15:25:33 +00:00
pub use context_menu::*;
pub use details::*;
pub use facepile::*;
pub use icon::*;
2023-10-06 21:16:00 +00:00
pub use icon_button::*;
pub use indicator::*;
pub use input::*;
2023-10-09 15:09:44 +00:00
pub use keybinding::*;
pub use label::*;
2023-10-04 22:25:43 +00:00
pub use list::*;
pub use modal::*;
2023-10-20 00:04:21 +00:00
pub use notification_toast::*;
2023-10-09 15:15:50 +00:00
pub use palette::*;
2023-10-03 00:16:55 +00:00
pub use panel::*;
pub use player::*;
pub use player_stack::*;
pub use slot::*;
pub use stack::*;
2023-10-06 22:43:25 +00:00
pub use tab::*;
2023-10-09 15:31:56 +00:00
pub use toast::*;
pub use toggle::*;
pub use tool_divider::*;