diff --git a/crates/ui2/src/prelude.rs b/crates/ui2/src/prelude.rs index 38065b62754b5facb5ed9440ad2b74535f40d445..0392fe80ee538fab880301c9e9b7c6b979c8a7fd 100644 --- a/crates/ui2/src/prelude.rs +++ b/crates/ui2/src/prelude.rs @@ -1,7 +1,8 @@ pub use gpui::prelude::*; pub use gpui::{ - div, Element, ElementId, InteractiveElement, ParentElement, RenderOnce, SharedString, Styled, - ViewContext, WindowContext, + div, px, relative, rems, AbsoluteLength, DefiniteLength, Div, Element, ElementId, + InteractiveElement, ParentElement, Pixels, Rems, RenderOnce, SharedString, Styled, ViewContext, + WindowContext, }; pub use crate::clickable::*; @@ -9,5 +10,8 @@ pub use crate::disableable::*; pub use crate::fixed::*; pub use crate::selectable::*; pub use crate::{h_stack, v_stack}; +pub use crate::{Button, ButtonSize, ButtonStyle, IconButton}; pub use crate::{ButtonCommon, Color, StyledExt}; +pub use crate::{Icon, IconElement, IconSize}; +pub use crate::{Label, LabelSize, LineHeightStyle}; pub use theme::ActiveTheme;